|
|
@@ -99,19 +99,19 @@ public class AdminOrderApiController extends CertifyApiController {
|
|
|
String approval,String orderRemarks,String signTime,String contractPictureUrl){
|
|
|
Result res = new Result();
|
|
|
if(StringUtils.isBlank(orderNo)){
|
|
|
- res.getError().add(buildError(ErrorConstants.PARAM_EMPTY_ERROR, "订单编号"));
|
|
|
+ res.getError().add(buildError(ErrorConstants.PARAM_EMPTY_ERROR, "订单编号", "订单编号"));
|
|
|
return res;
|
|
|
}
|
|
|
if(StringUtils.isBlank(signFirstPayment) || StringUtils.isBlank(signTotalAmount)){
|
|
|
- res.getError().add(buildError(ErrorConstants.PARAM_EMPTY_ERROR, "订单金额 和 首付金额"));
|
|
|
+ res.getError().add(buildError(ErrorConstants.PARAM_EMPTY_ERROR, "订单金额 和 首付金额", "订单金额 和 首付金额"));
|
|
|
return res;
|
|
|
}
|
|
|
if(null == approval){
|
|
|
- res.getError().add(buildError(ErrorConstants.PARAM_EMPTY_ERROR, "特批状态"));
|
|
|
+ res.getError().add(buildError(ErrorConstants.PARAM_EMPTY_ERROR, "特批状态", "特批状态"));
|
|
|
return res;
|
|
|
}
|
|
|
if(StringUtils.isBlank(contractPictureUrl)){
|
|
|
- res.getError().add(buildError(ErrorConstants.PARAM_EMPTY_ERROR, "合同图片"));
|
|
|
+ res.getError().add(buildError(ErrorConstants.PARAM_EMPTY_ERROR, "合同图片", "合同图片"));
|
|
|
return res;
|
|
|
}
|
|
|
orderServiceImpl.updateSignServiceOrder(orderNo,contractNo,signFirstPayment,signTotalAmount,approval,orderRemarks,signTime);
|