|
|
@@ -0,0 +1,91 @@
|
|
|
+package com.java110.community.cmd.parkingArea;
|
|
|
+
|
|
|
+import com.alibaba.fastjson.JSONArray;
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
+import com.java110.core.annotation.Java110Cmd;
|
|
|
+import com.java110.core.annotation.Java110Transactional;
|
|
|
+import com.java110.core.context.ICmdDataFlowContext;
|
|
|
+import com.java110.core.event.cmd.AbstractServiceCmdListener;
|
|
|
+import com.java110.core.event.cmd.CmdEvent;
|
|
|
+import com.java110.core.factory.GenerateCodeFactory;
|
|
|
+import com.java110.intf.community.IParkingAreaAttrV1InnerServiceSMO;
|
|
|
+import com.java110.intf.community.IParkingAreaV1InnerServiceSMO;
|
|
|
+import com.java110.po.parking.ParkingAreaPo;
|
|
|
+import com.java110.po.parkingAreaAttr.ParkingAreaAttrPo;
|
|
|
+import com.java110.utils.exception.CmdException;
|
|
|
+import com.java110.utils.util.Assert;
|
|
|
+import com.java110.utils.util.BeanConvertUtil;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+
|
|
|
+@Java110Cmd(serviceCode = "parkingArea.saveParkingArea")
|
|
|
+public class SaveParkingAreaCmd extends AbstractServiceCmdListener {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private IParkingAreaV1InnerServiceSMO parkingAreaV1InnerServiceSMOImpl;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private IParkingAreaAttrV1InnerServiceSMO parkingAreaAttrV1InnerServiceSMOImpl;
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void validate(CmdEvent event, ICmdDataFlowContext cmdDataFlowContext, JSONObject reqJson) throws CmdException {
|
|
|
+ //Assert.hasKeyAndValue(reqJson, "xxx", "xxx");
|
|
|
+
|
|
|
+ Assert.hasKeyAndValue(reqJson, "num", "必填,请填写停车场编号");
|
|
|
+ Assert.hasKeyAndValue(reqJson, "communityId", "必填,请填写小区信息");
|
|
|
+ Assert.hasKeyAndValue(reqJson, "typeCd", "必填,请选择停车场类型");
|
|
|
+
|
|
|
+ //属性校验
|
|
|
+ Assert.judgeAttrValue(reqJson);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ @Java110Transactional
|
|
|
+ public void doCmd(CmdEvent event, ICmdDataFlowContext cmdDataFlowContext, JSONObject reqJson) throws CmdException {
|
|
|
+ addParkingArea(reqJson);
|
|
|
+
|
|
|
+ dealAttr(reqJson);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void addParkingArea(JSONObject paramInJson) {
|
|
|
+
|
|
|
+ JSONObject businessParkingArea = new JSONObject();
|
|
|
+ businessParkingArea.putAll(paramInJson);
|
|
|
+ businessParkingArea.put("paId", GenerateCodeFactory.getGeneratorId(GenerateCodeFactory.CODE_PREFIX_paId));
|
|
|
+ ParkingAreaPo parkingAreaPo = BeanConvertUtil.covertBean(businessParkingArea, ParkingAreaPo.class);
|
|
|
+ //super.insert(dataFlowContext, parkingAreaPo, BusinessTypeConstant.BUSINESS_TYPE_SAVE_PARKING_AREA);
|
|
|
+ int flag = parkingAreaV1InnerServiceSMOImpl.saveParkingArea(parkingAreaPo);
|
|
|
+
|
|
|
+ if (flag < 1) {
|
|
|
+ throw new CmdException("保存停车场失败");
|
|
|
+ }
|
|
|
+ paramInJson.put("paId", businessParkingArea.getString("paId"));
|
|
|
+ }
|
|
|
+
|
|
|
+ private void dealAttr(JSONObject paramObj) {
|
|
|
+
|
|
|
+ if (!paramObj.containsKey("attrs")) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ JSONArray attrs = paramObj.getJSONArray("attrs");
|
|
|
+ if (attrs.size() < 1) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ JSONObject attr = null;
|
|
|
+ int flag = 0;
|
|
|
+ for (int attrIndex = 0; attrIndex < attrs.size(); attrIndex++) {
|
|
|
+ attr = attrs.getJSONObject(attrIndex);
|
|
|
+ attr.put("communityId", paramObj.getString("communityId"));
|
|
|
+ attr.put("paId", paramObj.getString("paId"));
|
|
|
+ // parkingAreaAttrBMOImpl.addParkingAreaAttr(attr, context);
|
|
|
+ ParkingAreaAttrPo parkingAreaAttrPo = BeanConvertUtil.covertBean(attr, ParkingAreaAttrPo.class);
|
|
|
+ flag = parkingAreaAttrV1InnerServiceSMOImpl.saveParkingAreaAttr(parkingAreaAttrPo);
|
|
|
+ if (flag < 1) {
|
|
|
+ throw new CmdException("保存停车场失败");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+}
|