Commit af0a1a3a authored by 吴春's avatar 吴春

提交代码

parent 2342f032
...@@ -270,6 +270,15 @@ namespace Mall.Module.Finance ...@@ -270,6 +270,15 @@ namespace Mall.Module.Finance
{ nameof(RB_Goods_OrderDetail.PaidCostMoney),item.OrderDetailPaid} { nameof(RB_Goods_OrderDetail.PaidCostMoney),item.OrderDetailPaid}
}; };
} }
else if (list.Any(x => x.Id == item.OrderDetailId && x.FinanceType == 1) && list.Any(x => x.Id == item.OrderDetailId && x.FinanceType ==3))
{
keyValues = new Dictionary<string, object>()
{
{ nameof(RB_Goods_OrderDetail.CostFinanceId),model.FinanceId},
{ nameof(RB_Goods_OrderDetail.InsuranceFinanceId),model.FinanceId},
{ nameof(RB_Goods_OrderDetail.PaidCostMoney),item.OrderDetailPaid}
};
}
else if (list.Any(x => x.Id == item.OrderDetailId && x.FinanceType == 1)) else if (list.Any(x => x.Id == item.OrderDetailId && x.FinanceType == 1))
{ {
keyValues = new Dictionary<string, object>() keyValues = new Dictionary<string, object>()
...@@ -288,6 +297,15 @@ namespace Mall.Module.Finance ...@@ -288,6 +297,15 @@ namespace Mall.Module.Finance
{ nameof(RB_Goods_OrderDetail.PaidCostMoney),item.OrderDetailPaid} { nameof(RB_Goods_OrderDetail.PaidCostMoney),item.OrderDetailPaid}
}; };
} }
else if (list.Any(x => x.Id == item.OrderDetailId && x.FinanceType ==3))
{
keyValues = new Dictionary<string, object>()
{
{ nameof(RB_Goods_OrderDetail.InsuranceFinanceId),model.FinanceId},
{ nameof(RB_Goods_OrderDetail.PaidCostMoney),item.OrderDetailPaid}
};
}
List<WhereHelper> whereHelpers = new List<WhereHelper>() { new WhereHelper() List<WhereHelper> whereHelpers = new List<WhereHelper>() { new WhereHelper()
{ {
FiledName=nameof(RB_Finance_Configurine_Extend.Id), FiledName=nameof(RB_Finance_Configurine_Extend.Id),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment