diff --git a/BWP.B3_YunKen.Web/BWP.B3_YunKen.Web.csproj b/BWP.B3_YunKen.Web/BWP.B3_YunKen.Web.csproj
index ff5b089..abeac64 100644
--- a/BWP.B3_YunKen.Web/BWP.B3_YunKen.Web.csproj
+++ b/BWP.B3_YunKen.Web/BWP.B3_YunKen.Web.csproj
@@ -134,6 +134,7 @@
ASPXCodeBehind
+
diff --git a/BWP.B3_YunKen.Web/Pages/TypeIOCs/GoodsApplyBasePropertiesIOC.cs b/BWP.B3_YunKen.Web/Pages/TypeIOCs/GoodsApplyBasePropertiesIOC.cs
new file mode 100644
index 0000000..981a878
--- /dev/null
+++ b/BWP.B3_YunKen.Web/Pages/TypeIOCs/GoodsApplyBasePropertiesIOC.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using BWP.B3Frameworks;
+using BWP.Web.Pages.B3Sale.Bills.GoodsApply_;
+
+namespace BWP.Web.Pages.TypeIOCs
+{
+ [TypeIOC(typeof(GoodsApplyEdit), typeof(GoodsApplyEdit.BaseDmoEditPageIOCs.BeforeBasePropertiesApplyLayout))]
+ public class GoodsApplyBasePropertiesIOC : GoodsApplyEdit.BaseDmoEditPageIOCs.BeforeBasePropertiesApplyLayout
+ {
+ public void Invoke(System.Web.UI.Page page, Web.Layout.LayoutManager manager, Web.Layout.AutoLayoutConfig config, Web.CustomPageLayout.PageLayoutSection section)
+ {
+ config.AddBefore("IsStandard", "Remark");
+ config.AddAfter("StandardGoods_ID", "IsStandard");
+ config.AddAfter("Diff", "StandardGoods_ID");
+ }
+ }
+}