Browse Source

需求单No.137971

master
wugang 8 years ago
parent
commit
87745415e9
1 changed files with 8 additions and 1 deletions
  1. +8
    -1
      BWP.B3_YunKen.Web/Pages/TypeIOCs/CustomerAcceptEditAddBasePropertiesIOC.cs

+ 8
- 1
BWP.B3_YunKen.Web/Pages/TypeIOCs/CustomerAcceptEditAddBasePropertiesIOC.cs View File

@ -6,6 +6,7 @@ using BWP.B3Frameworks;
using BWP.Web.Pages.B3Sale.BaseInfos;
using BWP.Web.Pages.B3Sale.Bills.CustomerAccept_;
using BWP.Web.Pages.B3Sale.Bills.GoodsApply_;
using TSingSoft.WebControls2;
namespace BWP.Web.Pages.TypeIOCs
{
@ -14,7 +15,13 @@ namespace BWP.Web.Pages.TypeIOCs
{
public void Invoke(System.Web.UI.Page page, Layout.LayoutManager manager, Layout.AutoLayoutConfig config, CustomPageLayout.PageLayoutSection section)
{
config.AddBefore("OrderDate", "Remark");
manager.Add("FreightPayment", new DFValueLabel());
manager.Add("FreightUnitPrice", new DFValueLabel());
manager.Add("FreightPrice", new DFValueLabel());
config.AddBefore("FreightPayment", "Remark");
config.AddBefore("FreightUnitPrice", "FreightPayment");
config.AddBefore("FreightPrice", "FreightUnitPrice");
config.AddBefore("OrderDate", "FreightPrice");
config.AddAfter("LoadTime", "OrderDate");
config.AddAfter("DeliverAddress", "LoadTime");
config.AddAfter("CreditPolicy_ID", "DeliverAddress");


Loading…
Cancel
Save