|
@@ -2103,7 +2103,7 @@ namespace OASystem.API.Controllers
|
|
|
sqlWhere += string.Format(@" And Id In ({0})", string.Join(",", _groupIds));
|
|
|
}
|
|
|
|
|
|
- string sql_1 = string.Format(@"Select * From Grp_CreditCardPayment Where IsDel = 0 And IsPay = 0 And IsAuditGM = 1 {0}", sqlWhere);
|
|
|
+ string sql_1 = string.Format(@"Select * From Grp_CreditCardPayment Where IsDel = 0 And IsPay = 0 And (IsAuditGM = 1 Or IsAuditGM = 3 ){0}", sqlWhere);
|
|
|
#endregion
|
|
|
|
|
|
var _paymentDatas = _sqlSugar.SqlQueryable<Grp_CreditCardPayment>(sql_1).ToList();//付款信息
|
|
@@ -2291,7 +2291,9 @@ namespace OASystem.API.Controllers
|
|
|
PayCurrCode = setDatas.Find(it => it.Id == hotelContent.Currency)?.Name ?? "",
|
|
|
PaymentAmount = _PaymentAmount1,
|
|
|
PayRate = hotelContent.Rate,
|
|
|
- CNYSubTotalAmount = _CNYSubTotalAmount1
|
|
|
+ CNYSubTotalAmount = _CNYSubTotalAmount1,
|
|
|
+ AuditStatus = payInfo.IsAuditGM
|
|
|
+
|
|
|
};
|
|
|
string remaksDescription1 = $"【{childInfo1.PayType}】【{childInfo1.ModuleName}】{rouNumber}、[申请人:{childInfo1.Applicant}]{subPriceName}[收款方:{childInfo1.Payee}] {childInfo1.PayCurrCode} {_PaymentAmount1.ToString("#0.00")}、CNY:{childInfo1.CNYSubTotalAmount.ToString("#0.00")}(团组:{groupInfo.TeamName})";
|
|
|
|
|
@@ -2329,7 +2331,8 @@ namespace OASystem.API.Controllers
|
|
|
PayCurrCode = setDatas.Find(it => it.Id == payInfo.PaymentCurrency)?.Name ?? "",
|
|
|
PaymentAmount = _PaymentAmount,
|
|
|
PayRate = payInfo.DayRate,
|
|
|
- CNYSubTotalAmount = _CNYSubTotalAmount
|
|
|
+ CNYSubTotalAmount = _CNYSubTotalAmount,
|
|
|
+ AuditStatus = payInfo.IsAuditGM
|
|
|
};
|
|
|
|
|
|
string remaksDescription = $"【{childInfo.PayType}】【{childInfo.ModuleName}】{rouNumber}、[申请人:{childInfo.Applicant}]{priName}[收款方:{childInfo.Payee}] {childInfo.PayCurrCode} {_PaymentAmount.ToString("#0.00")}、CNY:{childInfo.CNYSubTotalAmount.ToString("#0.00")}(团组:{groupInfo.TeamName})";
|