|
@@ -420,6 +420,7 @@ public class TOrderController {
|
|
|
order.setAltInfo(altInfo.toString());
|
|
|
order.setStatus(0);
|
|
|
order.setType(type);
|
|
|
+ order.setCompanyType(admin.getCompanyType());
|
|
|
if(type==0){
|
|
|
order.setAdminProportion(adminProportion);
|
|
|
order.setAgencyProportion(agencyProportion);
|
|
@@ -805,6 +806,7 @@ public class TOrderController {
|
|
|
order.setAltInfo(altInfo.toString());
|
|
|
order.setStatus(0);
|
|
|
order.setType(type);
|
|
|
+ order.setCompanyType(admin.getCompanyType());
|
|
|
if(type==0){
|
|
|
order.setAdminProportion(adminProportion);
|
|
|
order.setAgencyProportion(agencyProportion);
|
|
@@ -1195,6 +1197,7 @@ public class TOrderController {
|
|
|
order.setAltInfo(altInfo.toString());
|
|
|
order.setStatus(0);
|
|
|
order.setType(type);
|
|
|
+ order.setCompanyType(admin.getCompanyType());
|
|
|
if(type==0){
|
|
|
order.setAdminProportion(adminProportion);
|
|
|
order.setAgencyProportion(agencyProportion);
|
|
@@ -1237,6 +1240,7 @@ public class TOrderController {
|
|
|
order2.setAltInfo(altInfo.toString());
|
|
|
order2.setStatus(0);
|
|
|
order2.setPayPlatform(payPlatform);
|
|
|
+ order2.setCompanyType(admin.getCompanyType());
|
|
|
if(StringUtils.isNotEmpty(payPlatform)&&payPlatform.equals("1")){
|
|
|
order2.setIsSettlement("0");
|
|
|
}
|
|
@@ -1704,6 +1708,7 @@ public class TOrderController {
|
|
|
order.setStatus(0);
|
|
|
order.setType(type);
|
|
|
order.setProductNumber(productNumber);
|
|
|
+ order.setCompanyType(admin.getCompanyType());
|
|
|
if(type==0){
|
|
|
order.setAdminProportion(adminProportion);
|
|
|
order.setAgencyProportion(agencyProportion);
|
|
@@ -1748,6 +1753,7 @@ public class TOrderController {
|
|
|
order2.setStatus(0);
|
|
|
order2.setType(type);
|
|
|
order2.setProductNumber(productNumber);
|
|
|
+ order2.setCompanyType(admin.getCompanyType());
|
|
|
if(type==0){
|
|
|
order2.setAdminProportion(adminProportion);
|
|
|
order2.setAgencyProportion(agencyProportion);
|
|
@@ -2311,6 +2317,7 @@ public class TOrderController {
|
|
|
order.setType(type);
|
|
|
order.setMarketingAmount(marketingAmount);
|
|
|
order.setProductNumber(productNumber);
|
|
|
+ order.setCompanyType(admin.getCompanyType());
|
|
|
if(couponList.size()>0){
|
|
|
order.setCoupons(couponList.toString());
|
|
|
}
|
|
@@ -3469,5 +3476,7 @@ public class TOrderController {
|
|
|
}
|
|
|
return altInfo.toString();
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
}
|
|
|
|