|
|
@@ -66,7 +66,7 @@ public class AdminOrderApiController extends CertifyApiController {
|
|
|
*/
|
|
|
@RequestMapping(value = "/updateServiceOrder",method = RequestMethod.POST)
|
|
|
public Result updateServiceOrder(String orderNo,String signFirstPayment,String signTotalAmount,
|
|
|
- String orderRemarks){
|
|
|
+ String contractNo,String orderRemarks){
|
|
|
Result res = new Result();
|
|
|
if(StringUtils.isBlank(orderNo)){
|
|
|
res.getError().add(buildError(ErrorConstants.PARAM_EMPTY_ERROR, "订单编号"));
|
|
|
@@ -76,7 +76,7 @@ public class AdminOrderApiController extends CertifyApiController {
|
|
|
res.getError().add(buildError(ErrorConstants.PARAM_EMPTY_ERROR, "订单金额 和 首付金额"));
|
|
|
return res;
|
|
|
}
|
|
|
- orderServiceImpl.updateServiceOrder(orderNo,signFirstPayment,signTotalAmount,
|
|
|
+ orderServiceImpl.updateServiceOrder(orderNo,signFirstPayment,signTotalAmount,contractNo,
|
|
|
orderRemarks);
|
|
|
return res;
|
|
|
}
|