diff --git a/B3_DongFangWanQi/BL/ProductionNotificationBL_/ProductionNotificationBL.cs b/B3_DongFangWanQi/BL/ProductionNotificationBL_/ProductionNotificationBL.cs index 5e24b30..983f752 100644 --- a/B3_DongFangWanQi/BL/ProductionNotificationBL_/ProductionNotificationBL.cs +++ b/B3_DongFangWanQi/BL/ProductionNotificationBL_/ProductionNotificationBL.cs @@ -26,6 +26,8 @@ namespace B3_DongFangWanQi.BL public class ProductionNotificationBL : SaleDepartmentWorkFlowBillBL, IProductionNotificationBL { + protected override bool HasWorkFlowWeChatApproveFeature { get { return true; } } + protected override void beforeSave(ProductionNotification dmo) { base.beforeSave(dmo); diff --git a/B3_DongFangWanQi/BO/Bill/ProductionNotification_/ProductionNotification.cs b/B3_DongFangWanQi/BO/Bill/ProductionNotification_/ProductionNotification.cs index 7d7c0db..75a71ab 100644 --- a/B3_DongFangWanQi/BO/Bill/ProductionNotification_/ProductionNotification.cs +++ b/B3_DongFangWanQi/BO/Bill/ProductionNotification_/ProductionNotification.cs @@ -4,6 +4,7 @@ using System.Linq; using System.Text; using B3_DongFangWanQi.Utils; using BWP.B3Frameworks; +using BWP.B3Frameworks.Attributes; using BWP.B3Frameworks.BO; using BWP.B3Frameworks.BO.MoneyTemplate; using Forks.EnterpriseServices; @@ -16,6 +17,7 @@ namespace B3_DongFangWanQi.BO [DFClass, Serializable] [LogicName("生产通知")] [DmoTypeID(B3FrameworksConsts.DmoTypeIDBases.B3DongFangWanQi, DmoTypeIDOffset.ProductionNotification)] + [WeChatDataTemplateName("东方万旗生产通知")] public class ProductionNotification:DepartmentWorkFlowBill { private DateTime _date = DateTime.Today;