diff --git a/BWP.B3_YunKen.Web/Pages/B3YunKen/Bill/GoodsPackageSet.cs b/BWP.B3_YunKen.Web/Pages/B3YunKen/Bill/GoodsPackageSet.cs index 74a2d20..762e069 100644 --- a/BWP.B3_YunKen.Web/Pages/B3YunKen/Bill/GoodsPackageSet.cs +++ b/BWP.B3_YunKen.Web/Pages/B3YunKen/Bill/GoodsPackageSet.cs @@ -20,6 +20,9 @@ using TSingSoft.WebPluginFramework; using TSingSoft.WebPluginFramework.Controls; using TSingSoft.WebPluginFramework.Security; using Forks.Utils.Collections; +using BWP.B3Sale.Utils; +using BWP.B3Frameworks; +using BWP.B3UnitedInfos; namespace BWP.Web.Pages.B3YunKen.Bill @@ -57,11 +60,11 @@ namespace BWP.Web.Pages.B3YunKen.Bill int row = 0; tablePanel.Add(0, 1, row, row + 1, new SimpleLabel("会计单位", 4)); - _accountingUnitDfc = tablePanel.Add(1, 2, row, ++row, QueryCreator.DFChoiceBox(_dfInfo.Fields["Package_AccountingUnit_ID"], "授权会计单位"), new TableLayoutOption(Unit.Pixel(180))); + _accountingUnitDfc = tablePanel.Add(1, 2, row, ++row, QueryCreator.DFChoiceBox(_dfInfo.Fields["Package_AccountingUnit_ID"], B3FrameworksConsts.DataSources.授权会计单位), new TableLayoutOption(Unit.Pixel(180))); row = 0; tablePanel.Add(2, 3, row, row + 1, new SimpleLabel("产品", 4)); - _goodsDfc = tablePanel.Add(3, 4, row, ++row, QueryCreator.DFChoiceBox(_dfInfo.Fields["Goods_ID"], "存货"), new TableLayoutOption(Unit.Pixel(180))); + _goodsDfc = tablePanel.Add(3, 4, row, ++row, QueryCreator.DFChoiceBox(_dfInfo.Fields["Goods_ID"], B3UnitedInfosConsts.DataSources.存货), new TableLayoutOption(Unit.Pixel(180))); } private void CreateGrid(VLayoutPanel vPanel)