Browse Source

需求单No.137215

master
xueyingcheng 8 years ago
parent
commit
de61536c4a
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      BWP.B3_YunKen.Web/Pages/B3YunKen/Bill/GoodsPackageSet.cs

+ 5
- 2
BWP.B3_YunKen.Web/Pages/B3YunKen/Bill/GoodsPackageSet.cs View File

@ -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)


Loading…
Cancel
Save