|
@@ -123,10 +123,10 @@ public class WxJsjpController extends BaseController {
|
|
|
if(isShare==1) {
|
|
|
//如果是合作驾校
|
|
|
if (wxOrderDTO.getPhoneType()!=null && wxOrderDTO.getPhoneType()==1) { //苹果
|
|
|
- int priceApple = Integer.parseInt(values[3]) *100; //订单总额
|
|
|
+ int priceApple = Integer.parseInt(values[3]); //订单总额
|
|
|
order.setSchoolCommission(priceApple);
|
|
|
} else if (wxOrderDTO.getPhoneType()!=null && wxOrderDTO.getPhoneType()==2) { //安卓
|
|
|
- int priceAndroid = Integer.parseInt(values[2]) * 100; //订单总额
|
|
|
+ int priceAndroid = Integer.parseInt(values[2]); //订单总额
|
|
|
order.setSchoolCommission(priceAndroid);
|
|
|
}
|
|
|
}
|