public UCProductOrderOnline(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.user = user;
     this.Reset();
 }
Esempio n. 2
0
 public UCHuStatus(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.user = user;
     this.Reset();
 }
 public UCReceiveProdOrder(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.user = user;
     this.Reset();
 }
Esempio n. 4
0
 public MainForm()
 {
     InitializeComponent();
     LoadUCLogin();
     smartDeviceService = new SD_SmartDeviceService();
     timeOut = 20;
 }
 public UCProductOrderOnline(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.smartDeviceService.Url = Utility.WEBSERVICE_URL;
     this.user = user;
     this.Reset();
 }
 public UCWMSDeliveryBarCode(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.smartDeviceService.Url = Utility.WEBSERVICE_URL;
     this.user = user;
     this.Reset();
 }
Esempio n. 7
0
 public UCPutAway(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.user = user;
     this.btnOrder.Text = "上架";
     this.Reset();
 }
 public UCPickListOnline(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.user = user;
     this.btnOrder.Text = "上线";
     this.Reset();
 }
Esempio n. 9
0
 public UCQuickReturn(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.user = user;
     this.InitializeDataGrid();
     this.Reset();
 }
Esempio n. 10
0
 public UCHuAging(User user, bool isStart)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.user = user;
     this.isStart = isStart;
     this.Reset();
 }
Esempio n. 11
0
 public UCHuFilter(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.smartDeviceService.Url = Utility.WEBSERVICE_URL;
     this.user = user;
     this.Reset();
 }
Esempio n. 12
0
 public MainForm()
 {
     InitializeComponent();
     LoadUCLogin();
     smartDeviceService = new SD_SmartDeviceService();
     smartDeviceService.Url = Utility.WEBSERVICE_URL;
     timeOut = 20;
 }
Esempio n. 13
0
 public UCHuAging(User user, bool isStart)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.smartDeviceService.Url = Utility.WEBSERVICE_URL;
     this.user = user;
     this.isStart = isStart;
     this.Reset();
 }
Esempio n. 14
0
 public UCAnDon(User user)
 {
     this.InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.user = user;
     this.btnOrder.Text = "按灯";
     this.InitializeDataGrid();
     this.Reset();
 }
Esempio n. 15
0
 public UCWMSTransfer(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.smartDeviceService.Url = Utility.WEBSERVICE_URL;
     this.user = user;
     this.InitializeDataGrid();
     this.Reset();
 }
Esempio n. 16
0
 public UCPickUp(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.smartDeviceService.Url = Utility.WEBSERVICE_URL;
     this.user = user;
     this.btnOrder.Text = "下架";
     this.Reset();
 }
Esempio n. 17
0
 public UCMaterialIn(User user, bool isReturn)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.user = user;
     this.InitializeDataGrid();
     this.Reset();
     this.isReturn = isReturn;
     if (isReturn)
     {
         this.btnOrder.Text = "退料";
     }
     else
     {
         this.btnOrder.Text = "投料";
     }
 }