Browse Source

其他款项 新增字段 IsAuditGM

leiy 11 months ago
parent
commit
9ea4f70cb1

+ 2 - 0
OASystem/OASystem.Domain/ViewModels/Groups/DecreasePaymentsView.cs

@@ -138,6 +138,8 @@ namespace OASystem.Domain.ViewModels.Groups
         public string OtherSideName { get; set; }
         public string OtherSideNo { get; set; }
 
+        public int IsAuditGM { get; set; }
+
         /// <summary>
         /// 备注
         /// </summary>

+ 2 - 1
OASystem/OASystem.Infrastructure/Repositories/Groups/DecreasePaymentsRepository.cs

@@ -452,7 +452,8 @@ namespace OASystem.Infrastructure.Repositories.Groups
 											ccp.OrbitalPrivateTransfer,
 											ccp.OtherBankName,
 											ccp.OtherSideName,
-											ccp.OtherSideNo
+											ccp.OtherSideNo,
+                                            ccp.IsAuditGM
 										From Grp_DecreasePayments dp With(NoLock)
 										Left Join Grp_CreditCardPayment ccp With(NoLock) On dp.Id = ccp.CId And dp.DiId = ccp.DIId And ccp.CTable = 98
 										Where dp.IsDel = 0 And dp.Id = {dto.Id}");