Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
huatu_API
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liudong1993
huatu_API
Commits
3858213d
Commit
3858213d
authored
Aug 29, 2025
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
7ace6a2b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
5 deletions
+8
-5
SellOrderModule.cs
REBORN.Module.SellModule/SellOrderModule.cs
+8
-5
No files found.
REBORN.Module.SellModule/SellOrderModule.cs
View file @
3858213d
...
...
@@ -5529,7 +5529,7 @@ namespace REBORN.Module.SellModule
string UpdatePeopleMsg = "";
bool IsUpdateMoney = false;
Rb_Coupon_AllotRepository coupon_AllotRepository = new Rb_Coupon_AllotRepository();
bool isAddorder = false;
bool IsMoneyComplete = false;//款是否收齐
bool updateGuest = false;
...
...
@@ -5539,11 +5539,14 @@ namespace REBORN.Module.SellModule
var tmodel = tConfigModel.PriceList?.FirstOrDefault() ?? new RB_Travel_Price_Extend();
//先新曾供应商信息,在新增团信息最后是订单信息
int supplierId = 0;
bool supplierFlag = AddSupplierType(supplierModel, dmodel.UpdateDate ?? DateTime.Now, clientBankAccountList, out supplierId);
if (!supplierFlag)
int supplierId = -1;
if (!string.IsNullOrWhiteSpace(supplierModel.Name) && !string.IsNullOrWhiteSpace(supplierModel.Contact) && !string.IsNullOrWhiteSpace(supplierModel.Tel))
{
return "创建订单失败";
bool supplierFlag = AddSupplierType(supplierModel, dmodel.UpdateDate ?? DateTime.Now, clientBankAccountList, out supplierId);
if (!supplierFlag)
{
return "创建订单失败";
}
}
supplierModel.ID = supplierId;
tmodel.SupplierId = supplierId;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment