xiaogang
2022-04-12 b61309edd49fca3ca2e7572d67b2d67ffe292ce6
service-api/src/main/java/com/java110/api/bmo/store/impl/StoreBMOImpl.java
@@ -386,13 +386,14 @@
        JSONArray account = new JSONArray();
        AccountPo accountPo = new AccountPo();
        accountPo.setAcctId(GenerateCodeFactory.getGeneratorId(GenerateCodeFactory.CODE_PREFIX_acctId));
        accountPo.setAcctName(businessStoreObj.getString("name"));
        accountPo.setAcctType(acctType);
        accountPo.setAmount("0");
        accountPo.setObjId(paramInJson.getString("storeId"));
        accountPo.setObjType(AccountDto.OBJ_TYPE_STORE);
        account.add(JSONObject.parseObject(JSONObject.toJSONString(accountPo)));
        business.getJSONObject(CommonConstant.HTTP_BUSINESS_DATAS).put(WorkflowPo.class.getSimpleName(), account);
        business.getJSONObject(CommonConstant.HTTP_BUSINESS_DATAS).put(AccountPo.class.getSimpleName(), account);
        return business;
    }