Commit 8c8e09d8 authored by liudong1993's avatar liudong1993

1

parent e7025bf5
......@@ -6596,6 +6596,25 @@ namespace REBORN.Module.FinanceModule
item.TradeDate = null;
}
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)
{
......
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