public UCProductOrderOnline(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.user = user;
     this.Reset();
 }
Ejemplo n.º 2
0
 public UCHuStatus(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.user = user;
     this.Reset();
 }
Ejemplo n.º 3
0
 public UCReceiveProdOrder(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.user = user;
     this.Reset();
 }
Ejemplo n.º 4
0
 public MainForm()
 {
     InitializeComponent();
     LoadUCLogin();
     smartDeviceService = new SD_SmartDeviceService();
     timeOut = 20;
 }
Ejemplo n.º 5
0
 public UCProductOrderOnline(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.smartDeviceService.Url = Utility.WEBSERVICE_URL;
     this.user = user;
     this.Reset();
 }
Ejemplo n.º 6
0
 public UCWMSDeliveryBarCode(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.smartDeviceService.Url = Utility.WEBSERVICE_URL;
     this.user = user;
     this.Reset();
 }
Ejemplo n.º 7
0
 public UCPutAway(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.user = user;
     this.btnOrder.Text = "上架";
     this.Reset();
 }
Ejemplo n.º 8
0
 public UCPickListOnline(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.user = user;
     this.btnOrder.Text = "上线";
     this.Reset();
 }
Ejemplo n.º 9
0
 public UCQuickReturn(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.user = user;
     this.InitializeDataGrid();
     this.Reset();
 }
Ejemplo n.º 10
0
 public UCHuAging(User user, bool isStart)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.user = user;
     this.isStart = isStart;
     this.Reset();
 }
Ejemplo n.º 11
0
 public UCHuFilter(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.smartDeviceService.Url = Utility.WEBSERVICE_URL;
     this.user = user;
     this.Reset();
 }
Ejemplo n.º 12
0
 public MainForm()
 {
     InitializeComponent();
     LoadUCLogin();
     smartDeviceService = new SD_SmartDeviceService();
     smartDeviceService.Url = Utility.WEBSERVICE_URL;
     timeOut = 20;
 }
Ejemplo 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();
 }
Ejemplo n.º 14
0
 public UCAnDon(User user)
 {
     this.InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.user = user;
     this.btnOrder.Text = "按灯";
     this.InitializeDataGrid();
     this.Reset();
 }
Ejemplo 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();
 }
Ejemplo 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();
 }
Ejemplo 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 = "投料";
     }
 }