mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 18:43:26 +08:00
【修复】修复财务报表统计中对充值统计纬度类型传送错误的问题。
【修复】修复退款单处理未更新【更新时间】字段的问题。
This commit is contained in:
@@ -143,7 +143,8 @@ namespace CoreCms.Net.Services
|
||||
await _dal.UpdateAsync(p => new CoreCmsBillRefund()
|
||||
{
|
||||
status = (int)GlobalEnumVars.BillRefundStatus.STATUS_REFUND,
|
||||
paymentCode = paymentCodeStr
|
||||
paymentCode = paymentCodeStr,
|
||||
updateTime = DateTime.Now
|
||||
},
|
||||
p => p.refundId == refundId && p.status == (int)GlobalEnumVars.BillRefundStatus.STATUS_NOREFUND);
|
||||
jm.status = true;
|
||||
@@ -162,7 +163,8 @@ namespace CoreCms.Net.Services
|
||||
p => new CoreCmsBillRefund()
|
||||
{
|
||||
status = status,
|
||||
paymentCode = paymentCodeStr
|
||||
paymentCode = paymentCodeStr,
|
||||
updateTime = DateTime.Now
|
||||
},
|
||||
p => p.refundId == refundId && p.status == (int)GlobalEnumVars.BillRefundStatus.STATUS_NOREFUND);
|
||||
jm.status = true;
|
||||
|
||||
Reference in New Issue
Block a user