Commit 770e3bb5 authored by hezhen's avatar hezhen

Merge branch 'master-chw' into dev-chw

parents 3893286f a240d72c
...@@ -235,6 +235,11 @@ public class VehicleApplyBiz extends BaseBiz<VehicleApplyMapper, VehicleApply>{ ...@@ -235,6 +235,11 @@ public class VehicleApplyBiz extends BaseBiz<VehicleApplyMapper, VehicleApply>{
audit(vehicleApply1); audit(vehicleApply1);
}catch (Exception e){ }catch (Exception e){
log.error(e.getMessage(),e); log.error(e.getMessage(),e);
vehicleApply1.setApplyStatus(2);
JSONObject reson = new JSONObject();
reson.put("content",e.getMessage());
vehicleApply1.setReason(reson.toJSONString());
audit(vehicleApply1);
continue; continue;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment