コード例 #1
0
 public UCProductOrderOnline(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.user = user;
     this.Reset();
 }
コード例 #2
0
ファイル: UCHuStatus.cs プロジェクト: zhsh1241/Sconit5_Shenya
 public UCHuStatus(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.user = user;
     this.Reset();
 }
コード例 #3
0
 public UCReceiveProdOrder(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.user = user;
     this.Reset();
 }
コード例 #4
0
ファイル: MainForm.cs プロジェクト: zhsh1241/Sconit5_Shenya
 public MainForm()
 {
     InitializeComponent();
     LoadUCLogin();
     smartDeviceService = new SD_SmartDeviceService();
     timeOut = 20;
 }
コード例 #5
0
 public UCProductOrderOnline(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.smartDeviceService.Url = Utility.WEBSERVICE_URL;
     this.user = user;
     this.Reset();
 }
コード例 #6
0
 public UCWMSDeliveryBarCode(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.smartDeviceService.Url = Utility.WEBSERVICE_URL;
     this.user = user;
     this.Reset();
 }
コード例 #7
0
ファイル: UCPutAway.cs プロジェクト: zhsh1241/Sconit5_Shenya
 public UCPutAway(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.user = user;
     this.btnOrder.Text = "上架";
     this.Reset();
 }
コード例 #8
0
 public UCPickListOnline(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.user = user;
     this.btnOrder.Text = "上线";
     this.Reset();
 }
コード例 #9
0
 public UCQuickReturn(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.user = user;
     this.InitializeDataGrid();
     this.Reset();
 }
コード例 #10
0
ファイル: UCHuAging.cs プロジェクト: zhsh1241/Sconit5_Shenya
 public UCHuAging(User user, bool isStart)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.user = user;
     this.isStart = isStart;
     this.Reset();
 }
コード例 #11
0
ファイル: UCHuFilter.cs プロジェクト: druidwang/Les_parts
 public UCHuFilter(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.smartDeviceService.Url = Utility.WEBSERVICE_URL;
     this.user = user;
     this.Reset();
 }
コード例 #12
0
ファイル: MainForm.cs プロジェクト: druidwang/Les_parts
 public MainForm()
 {
     InitializeComponent();
     LoadUCLogin();
     smartDeviceService = new SD_SmartDeviceService();
     smartDeviceService.Url = Utility.WEBSERVICE_URL;
     timeOut = 20;
 }
コード例 #13
0
ファイル: UCHuAging.cs プロジェクト: druidwang/Les_parts
 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();
 }
コード例 #14
0
ファイル: UCAnDon.cs プロジェクト: zhsh1241/Sconit5_Shenya
 public UCAnDon(User user)
 {
     this.InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.user = user;
     this.btnOrder.Text = "按灯";
     this.InitializeDataGrid();
     this.Reset();
 }
コード例 #15
0
ファイル: UCWMSTransfer.cs プロジェクト: druidwang/Les_parts
 public UCWMSTransfer(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.smartDeviceService.Url = Utility.WEBSERVICE_URL;
     this.user = user;
     this.InitializeDataGrid();
     this.Reset();
 }
コード例 #16
0
ファイル: UCPickUp.cs プロジェクト: druidwang/Les_parts
 public UCPickUp(User user)
 {
     InitializeComponent();
     this.smartDeviceService = new SD_SmartDeviceService();
     this.smartDeviceService.Url = Utility.WEBSERVICE_URL;
     this.user = user;
     this.btnOrder.Text = "下架";
     this.Reset();
 }
コード例 #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 = "投料";
     }
 }