From c991716bcec227879bfac94c5528c05522c58b05 Mon Sep 17 00:00:00 2001 From: yxj <yxj@hz-kingdee.com> Date: 星期二, 02 四月 2024 15:50:33 +0800 Subject: [PATCH] 考勤汇报单模块调用方法新增修改;工种、工资类型、核算方式、核算方式组等获取列表信息方法修改;条码生成模块修正 --- LMES/ClsShowMod.cs | 36 ++++++++++++++++++++++++++++++++---- 1 files changed, 32 insertions(+), 4 deletions(-) diff --git a/LMES/ClsShowMod.cs b/LMES/ClsShowMod.cs index c33dc1b..37a9d43 100644 --- a/LMES/ClsShowMod.cs +++ b/LMES/ClsShowMod.cs @@ -2038,7 +2038,7 @@ Sc_HZQLCGKB oSc_HZQLCGKB = new Sc_HZQLCGKB(); oSc_HZQLCGKB.ShowDialog(); break; - + case "sc_processplanchangelist": //权限 Sc_ProcessPlanChangeList oSc_ProcessPlanChangeList = new Sc_ProcessPlanChangeList(); @@ -3641,8 +3641,13 @@ break; case "kf_weightobarcode": // - Kf_WeighToBarCode Kf_WeighToBarCode = new Kf_WeighToBarCode(); - Kf_WeighToBarCode.ShowDialog(); + Kf_WeighToBarCode oKf_WeighToBarCode = new Kf_WeighToBarCode(); + oKf_WeighToBarCode.ShowDialog(); + break; + case "kf_weightobarcode_stationoutbill": + // + Kf_WeighToBarCode_StationOutBill oKf_WeighToBarCode_StationOutBill = new Kf_WeighToBarCode_StationOutBill(); + oKf_WeighToBarCode_StationOutBill.ShowDialog(); break; case "kf_barcodeoutinreport": //权限 @@ -3772,6 +3777,11 @@ // Kf_SellOutBill oKf_SellOutBill = new Kf_SellOutBill(); oKf_SellOutBill.ShowDialog(); + break; + case "kf_selloutbill_barcodenote": + // + Kf_SellOutBill_BarCodeNote oKf_SellOutBill_BarCodeNote = new Kf_SellOutBill_BarCodeNote(); + oKf_SellOutBill_BarCodeNote.ShowDialog(); break; case "kf_mateoutbilllist": //权限 @@ -5439,7 +5449,14 @@ oSc_StationOutSumReport.ModCaption = gnmc; oSc_StationOutSumReport.Show(); oMainForm.AddTabPage(oSc_StationOutSumReport); - break; + break; + case "sc_procexchangenoinreport": + Sc_ProcExchangeNoInReport oSc_ProcExchangeNoInReport = new Sc_ProcExchangeNoInReport(); + oSc_ProcExchangeNoInReport.MdiParent = oMain; + oSc_ProcExchangeNoInReport.ModCaption = gnmc; + oSc_ProcExchangeNoInReport.Show(); + oMainForm.AddTabPage(oSc_ProcExchangeNoInReport); + break; case "sc_processexchangebill": Sc_ProcessExchangeBill oSc_ProcessExchangeBill = new Sc_ProcessExchangeBill(); oSc_ProcessExchangeBill.BillStatus = DBUtility.ClsPub.Enum_BillStatus.BillStatus_AddNew; @@ -7901,6 +7918,10 @@ Sc_SCJDKB oSc_SCJDKB = new Sc_SCJDKB(); oSc_SCJDKB.ShowDialog(); break; + case "sc_wgjckkb": + Sc_WGJCKKB oSc_WGJCKKB = new Sc_WGJCKKB(); + oSc_WGJCKKB.ShowDialog(); + break; // case "gy_sopbilllist": //权限 @@ -7960,6 +7981,13 @@ oSc_WorkShopReport.Show(); oMainForm.AddTabPage(oSc_WorkShopReport); break; + case "sc_overprodreport": + Sc_OverProdReport oSc_OverProdReport = new Sc_OverProdReport(); + oSc_OverProdReport.MdiParent = oMain; + oSc_OverProdReport.ModCaption = gnmc; + oSc_OverProdReport.Show(); + oMainForm.AddTabPage(oSc_OverProdReport); + break; case "sc_warehousereport": Sc_WareHouseReport oSc_WareHouseReport = new Sc_WareHouseReport(); oSc_WareHouseReport.MdiParent = oMain; -- Gitblit v1.9.1