From 135dab33ba26f1ad8f0a96a9dadea4b90dc288ee Mon Sep 17 00:00:00 2001 From: luanhui <1029149336@qq.com> Date: Thu, 28 Dec 2017 11:29:22 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=9F=E4=BA=A7=E9=80=9A=E7=9F=A5=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E5=BE=AE=E4=BF=A1=E5=AE=A1=E6=89=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BL/ProductionNotificationBL_/ProductionNotificationBL.cs | 2 ++ .../BO/Bill/ProductionNotification_/ProductionNotification.cs | 2 ++ 2 files changed, 4 insertions(+) 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;