From de61536c4ad1d4fe28a530d091dd40fda00bc952 Mon Sep 17 00:00:00 2001 From: xueyingcheng Date: Mon, 18 Dec 2017 17:11:14 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9C=80=E6=B1=82=E5=8D=95No.137215?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- BWP.B3_YunKen.Web/Pages/B3YunKen/Bill/GoodsPackageSet.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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)