Commit 612c0a54 authored by 吴春's avatar 吴春
parents ac7c35ca 8c8e09d8
...@@ -6596,6 +6596,25 @@ namespace REBORN.Module.FinanceModule ...@@ -6596,6 +6596,25 @@ namespace REBORN.Module.FinanceModule
item.TradeDate = null; item.TradeDate = null;
} }
if (model.ClientID > 0) { item.AccountNumber = BankAccount; } if (model.ClientID > 0) { item.AccountNumber = BankAccount; }
if (model.ReFinanceId>0 && (model.OtherType == 55 || model.OtherType == 61 || model.OtherType == 66 || model.OtherType == 67)) {
//单项产品 带出订单号
if (model.OtherType == 55 && model.ReFinanceId > 0) {
item.TCIDAndTCNUMList = new List<TCIDInfo>() { new TCIDInfo() { TCID = model.ReFinanceId, TCNUM = "单机票" } };
}
if (model.OtherType == 61 && model.ReFinanceId > 0)
{
item.TCIDAndTCNUMList = new List<TCIDInfo>() { new TCIDInfo() { TCID = model.ReFinanceId, TCNUM = "单酒店" } };
}
if (model.OtherType == 66 && model.ReFinanceId > 0)
{
item.TCIDAndTCNUMList = new List<TCIDInfo>() { new TCIDInfo() { TCID = model.ReFinanceId, TCNUM = "单船票" } };
}
if (model.OtherType == 67 && model.ReFinanceId > 0)
{
item.TCIDAndTCNUMList = new List<TCIDInfo>() { new TCIDInfo() { TCID = model.ReFinanceId, TCNUM = "单包车" } };
}
}
} }
if (RFrIdList.Count() > 0) if (RFrIdList.Count() > 0)
{ {
......
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