|
@@ -434,6 +434,19 @@ public class TOrderController extends BaseController<TOrder,TOrderExample,TOrder
|
|
|
order1.setPersonageId(personageId);
|
|
|
order1.setAdminId(admin.getId());
|
|
|
order1.setProductName(productName);
|
|
|
+ if(adminProportion!=null){
|
|
|
+ order1.setAdminProportion(Float.parseFloat(adminProportion.toString()));
|
|
|
+ }
|
|
|
+ if(agencyProportion!=null){
|
|
|
+ order1.setAgencyProportion(Float.parseFloat(agencyProportion.toString()));
|
|
|
+ }
|
|
|
+ if(merchantProportion!=null){
|
|
|
+ order1.setMerchantProportion(Float.parseFloat(merchantProportion.toString()));
|
|
|
+ }
|
|
|
+ if(personageProportion!=null){
|
|
|
+ order1.setPersonageProportion(Float.parseFloat(personageProportion.toString()));
|
|
|
+ }
|
|
|
+ order1.setAltInfo(altInfo.toString());
|
|
|
float p = Float.parseFloat(price1.toString());
|
|
|
order1.setPrice(p);
|
|
|
order1.setEquipmentId(equipmentId);
|