diff --git a/fuintAdmin/src/layout/components/Navbar.vue b/fuintAdmin/src/layout/components/Navbar.vue index 30eda514a..1cd4ab25e 100644 --- a/fuintAdmin/src/layout/components/Navbar.vue +++ b/fuintAdmin/src/layout/components/Navbar.vue @@ -7,7 +7,7 @@
diff --git a/fuintAdmin/src/views/order/order_Goods.vue b/fuintAdmin/src/views/order/order_Goods.vue index bb8b22dda..ef6ae3e11 100644 --- a/fuintAdmin/src/views/order/order_Goods.vue +++ b/fuintAdmin/src/views/order/order_Goods.vue @@ -156,17 +156,17 @@ {{ parseTime(scope.row.payTime) }} - - - + + + + + +
diff --git a/fuintAdmin/src/views/order/order_Oil.vue b/fuintAdmin/src/views/order/order_Oil.vue index ea4b59967..b8ddb109e 100644 --- a/fuintAdmin/src/views/order/order_Oil.vue +++ b/fuintAdmin/src/views/order/order_Oil.vue @@ -216,17 +216,17 @@ - - - + + + + + +
diff --git a/fuintAdmin_zt/src/api/system/Site/site.js b/fuintAdmin_zt/src/api/system/Site/site.js index 82fc92f20..29ae1188f 100644 --- a/fuintAdmin_zt/src/api/system/Site/site.js +++ b/fuintAdmin_zt/src/api/system/Site/site.js @@ -209,3 +209,11 @@ export function deptDelete(id) { method: 'delete', }) } + +export function isTopLevelNodesApi(data) { + return request({ + url: '/system/dept/isTopLevelNodes', + method: 'get', + params: data + }) +} diff --git a/fuintAdmin_zt/src/views/Site/index.vue b/fuintAdmin_zt/src/views/Site/index.vue index 986d11fcb..12491d018 100644 --- a/fuintAdmin_zt/src/views/Site/index.vue +++ b/fuintAdmin_zt/src/views/Site/index.vue @@ -30,319 +30,322 @@ - + - - - - - - - - - - - - - - - 搜索 - 重置 - - - - - - 新增 - - - - - - - - - - - - - - - - - - - - - + + + + + + + + - - + + + + + + 搜索 + 重置 + + - - - + + + - - + >新增 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - - - - - - - - - - - - - - - {{dict.label}} - - + + + + + + + + + + + + + + + {{dict.label}} + + - + + + + + + + + + + + + + + + + + - - - - + + + - - 新增 - - - - 保存 - - - - - - + @@ -475,7 +478,7 @@ import { deptedit, deptDelete, Userlist, - jklist, getDutyList + jklist, getDutyList, isTopLevelNodesApi } from "@/api/system/Site/site"; // import { getStoreStaffList } from "@/api/staff"; import { getAccountList, getAccount, delAccount, addAccount, updateAccount, resetAccountPwd, changeAccountStatus } from "@/api/system/account"; @@ -483,15 +486,24 @@ import { import Treeselect from "@riophae/vue-treeselect"; import "@riophae/vue-treeselect/dist/vue-treeselect.css"; import BigNumber from 'bignumber.js'; +import node from "../../../../gasStation-uni/uni_modules/uview-ui/components/u-parse/node/node.vue"; export default { name: "User", + computed: { + node() { + return node + } + }, dicts: ['node_type'], data() { return { + isEditDept:true, + isTopDept:true, + timeFrame:[], value10:true, @@ -504,7 +516,7 @@ export default { activeName: 'list', ruleForm: { parentId:'', - deptType:'1', + deptType:'3', status:'qy', leaderName:'', leaderPhone:'', @@ -600,6 +612,7 @@ export default { status: '', deptId: '' }, + isClick: false, // 列信息 columns: [ {key: 0, label: `用户编号`, visible: true}, @@ -762,6 +775,17 @@ export default { this.cleanUp() this.getList() }, + + // 创建节点类型判断 + judgementNodeType(typeList) { + let evenNumbers = typeList + // isClick + if (this.deptType == 3 || (this.deptType == 2 && !this.isClick)) { + evenNumbers = typeList.filter(number => number.label === "基本门店"); + this.ruleForm.deptType = "3" + } + return evenNumbers + }, // 状态修改 getswitch(e){ console.log(e) @@ -772,10 +796,26 @@ export default { } }, - activecilck(data){ + async activecilck(data){ + + // 判断是点击还是修改该 + this.isClick = true + console.log('点树',data) this.cleanUp() + + let flag = true + await this.getIsTopLevelNodesApi(data.id).then(res=>{ + flag = res + console.log('点树2222',res) + + }) + this.$forceUpdate(); + this.isTopDept = flag + + + // 点击树之后 this.queryParams.deptId = data.id this.deptType = data.deptType @@ -819,7 +859,7 @@ export default { submitForms(formName) { this.$refs[formName].validate((valid) => { if (valid) { - + console.log("timeFrame",this.timeFrame) if (this.timeFrame){ this.ruleForm.turnoverStartTime = this.timeFrame[0] this.ruleForm.turnoverEndTime = this.timeFrame[1] @@ -905,13 +945,21 @@ export default { } }, // 新增数据 - addNode(id,label) { - // 默认类型 + async addNode(id,label) { let _this = this + // 默认类型 + this.isClick = false + this.ruleForm.deptType = "3" + this.$nextTick(() => { + console.log("新增树的返回222", this.ruleForm); + }); + // _this.ruleForm.deptType = '1' // 点击树获取部门信息 - Userlist(id).then(res=>{ + await Userlist(id).then(res=>{ console.log("新增树的返回",res) + + this.deptType = res.data.deptType if (res.data.deptType === "3") { this.parentName = res.data.parentName this.ruleForm.parentId = res.data.parentId @@ -921,6 +969,7 @@ export default { } }) + this.isTopDept = false }, //修改树 @@ -999,16 +1048,37 @@ export default { }, // this.appedit(data) }>修改 renderContent(h, { node, data, store }) { + console.log("node",node) + console.log("data",data) + console.log("store",store) + let isAdd = data.deptType == '3' return ( {node.label} - this.append(data) }>新增 - - this.remove(node, data) }>删除 - + {!isAdd ? + this.append(data)}>新增 + : null + } + {node.level !== 1 ? + this.remove(node, data)}>删除 + : null + } + ); }, + + + async getIsTopLevelNodesApi(deptId) { + let flag = false + await isTopLevelNodesApi({deptId:deptId}).then(res =>{ + if (res.code === 200) { + flag = res.data + } + }) + return flag + }, + /** 查询用户列表 */ async getList() { console.log("123123123",this.form) @@ -1225,7 +1295,14 @@ export default { app.form.password1 = row.password //获取角色 - this.getRoleList(); + let permissionType + + if (row.deptType === "3") { + permissionType = 'staff' + }else { + permissionType = 'system' + } + this.getRoleList(permissionType); }, @@ -1354,8 +1431,9 @@ export default { } .left-box{ box-sizing: border-box; - height: 90vh; + height: 75vh; padding: 15px; + overflow-y: auto; /* 只显示垂直滚动条 */ } .title-h{ font-size: 18px; diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/commission/service/impl/CommissionRecordServiceImpl.java b/fuintBackend/fuint-application/src/main/java/com/fuint/business/commission/service/impl/CommissionRecordServiceImpl.java index de1b355d6..d14f124cf 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/commission/service/impl/CommissionRecordServiceImpl.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/commission/service/impl/CommissionRecordServiceImpl.java @@ -182,7 +182,7 @@ public class CommissionRecordServiceImpl implements CommissionRecordService { queryWrapper.eq("type",type); queryWrapper.eq("order_no",orderNo); CommissionRecord commissionRecord = commissionRecordMapper.selectOne(queryWrapper); - if (ObjectUtil.isNotEmpty(commissionRecord)){ + if (ObjectUtil.isNotEmpty(commissionRecord) && ObjectUtil.isNotEmpty(commissionRecord.getAmount())){ CommissionRecord record = new CommissionRecord(); if (type.equals("1")){ record.setType("4"); diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/convenienceSore/entity/MtInventoryDetails.java b/fuintBackend/fuint-application/src/main/java/com/fuint/business/convenienceSore/entity/MtInventoryDetails.java index 9b04ee89b..959874fce 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/convenienceSore/entity/MtInventoryDetails.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/convenienceSore/entity/MtInventoryDetails.java @@ -42,7 +42,7 @@ public class MtInventoryDetails extends BaseEntity { /** * 库存差异 */ - private Double inventoryDiscrepancy; + private Integer inventoryDiscrepancy; /** * 盘点数量 */ diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/convenienceSore/mapper/xml/MtInventoryDetailsMapper.xml b/fuintBackend/fuint-application/src/main/java/com/fuint/business/convenienceSore/mapper/xml/MtInventoryDetailsMapper.xml index 48f549b1a..03ca6e393 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/convenienceSore/mapper/xml/MtInventoryDetailsMapper.xml +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/convenienceSore/mapper/xml/MtInventoryDetailsMapper.xml @@ -342,10 +342,16 @@ + + + + + + update mt_goods set - stock = stock + #{inventoryDiscrepancy} , - update_time = NOW() + stock = #{inventoryQuantity} , + update_time = NOW() where id = #{goodsId} diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/convenienceSore/mapper/xml/MtInventoryMapper.xml b/fuintBackend/fuint-application/src/main/java/com/fuint/business/convenienceSore/mapper/xml/MtInventoryMapper.xml index 418346084..8122d7291 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/convenienceSore/mapper/xml/MtInventoryMapper.xml +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/convenienceSore/mapper/xml/MtInventoryMapper.xml @@ -198,6 +198,7 @@ group by mp.id + order by mp.create_time DESC diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/convenienceSore/mapper/xml/MtPurchaseMapper.xml b/fuintBackend/fuint-application/src/main/java/com/fuint/business/convenienceSore/mapper/xml/MtPurchaseMapper.xml index ec3842504..7f4742b8f 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/convenienceSore/mapper/xml/MtPurchaseMapper.xml +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/convenienceSore/mapper/xml/MtPurchaseMapper.xml @@ -161,9 +161,11 @@ mpd.id detailsId, s.id supplierId, s.name supplierName - from mt_purchase_details mpd + from mt_purchase mp + left join mt_purchase_details mpd ON mp.id = mpd.purchase_id left join mt_goods mg ON mg.id = mpd.goods_id left join supplier s ON mg.supplier_id = s.id + where mp.id = #{pId} diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/convenienceSore/service/impl/MtInventoryServiceImpl.java b/fuintBackend/fuint-application/src/main/java/com/fuint/business/convenienceSore/service/impl/MtInventoryServiceImpl.java index b91d3b767..0906beb4b 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/convenienceSore/service/impl/MtInventoryServiceImpl.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/convenienceSore/service/impl/MtInventoryServiceImpl.java @@ -1,5 +1,6 @@ package com.fuint.business.convenienceSore.service.impl; +import cn.hutool.core.util.ObjectUtil; import com.baomidou.mybatisplus.core.metadata.IPage; import com.fuint.business.convenienceSore.dto.MtInventoryDto; import com.fuint.business.convenienceSore.entity.*; @@ -177,7 +178,7 @@ public class MtInventoryServiceImpl implements MtInventoryService { //添加货损出库的数据 - if (mtReturnsDetailsVO.getDamageQuantity()>0) { + if (ObjectUtil.isNotEmpty(mtReturnsDetailsVO.getDamageQuantity()) && mtReturnsDetailsVO.getDamageQuantity()>0) { stockTrack = new StockTrack(); stockTrack.setStockId(stockStatistic.getId()); stockTrack.setStoreId(nowAccountInfo.getStoreId()); diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/integral/mapper/xml/IntegralGiftMapper.xml b/fuintBackend/fuint-application/src/main/java/com/fuint/business/integral/mapper/xml/IntegralGiftMapper.xml index 388465a91..72c2730e7 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/integral/mapper/xml/IntegralGiftMapper.xml +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/integral/mapper/xml/IntegralGiftMapper.xml @@ -412,7 +412,8 @@ update integral_gift set - total_inventory = total_inventory + #{editInventory}, + total_inventory = total_inventory +0+ #{editInventory}, + remaining_inventory = remaining_inventory +0+ #{editInventory}, update_by = #{updateBy}, update_time = NOW() where id =#{id} diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/integral/service/impl/IntegralGiftServiceImpl.java b/fuintBackend/fuint-application/src/main/java/com/fuint/business/integral/service/impl/IntegralGiftServiceImpl.java index cc1d2804c..57a818960 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/integral/service/impl/IntegralGiftServiceImpl.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/integral/service/impl/IntegralGiftServiceImpl.java @@ -190,8 +190,31 @@ public class IntegralGiftServiceImpl implements IntegralGiftService { */ @Override public boolean updateInventory(@Param("id") Integer id,@Param("editInventory") Integer editInventory) { + if (ObjectUtil.isEmpty(editInventory)) throw new RuntimeException("输入需要修改的数值"); AccountInfo nowAccountInfo = TokenUtil.getNowAccountInfo(); - return this.integralGiftDao.updateInventory(id,editInventory,nowAccountInfo.getStaffId()) > 0; + IntegralGift integralGift1 = this.integralGiftDao.queryById(id); + if (editInventory<0 && integralGift1.getRemainingInventory() < -editInventory) { + throw new RuntimeException("库存不得少于0"); + } + int i = this.integralGiftDao.updateInventory(id,editInventory,nowAccountInfo.getStaffId()); + // 根据id查询积分商品 + IntegralGift integralGift = integralGiftDao.queryById(id); + if ("实物商品".equals(integralGift.getGiftType()) && ObjectUtil.isNotEmpty(integralGift.getGoodsId())) { + LJGoods byId = ljGoodsService.getById(integralGift.getGoodsId()); + if (editInventory>byId.getStock()) { + // 当增加库存是需要判断商品库存是否足够 + throw new RuntimeException("该商品库存不足"); + } + LJGoodsDto goods = new LJGoodsDto(); + goods.setId(byId.getId()); + goods.setStoreId(byId.getStoreId()); + goods.setNumberOfChanges(-editInventory); + goods.setDocument("积分商品更改库存"); + ljGoodsService.editGoodsInventory(goods); + } + + return true; + } @Resource RedisLock redisLock; diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/order/entity/AllOrderInfo.java b/fuintBackend/fuint-application/src/main/java/com/fuint/business/order/entity/AllOrderInfo.java index 84a0be7dc..2dcdb2347 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/order/entity/AllOrderInfo.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/order/entity/AllOrderInfo.java @@ -84,6 +84,7 @@ public class AllOrderInfo extends BaseEntity implements Serializable { * 退款订单 */ private String refOrderNo; + private String refBy; } diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/order/mapper/xml/HandoverRecordMapper.xml b/fuintBackend/fuint-application/src/main/java/com/fuint/business/order/mapper/xml/HandoverRecordMapper.xml index 7f0059287..f2ad27be4 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/order/mapper/xml/HandoverRecordMapper.xml +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/order/mapper/xml/HandoverRecordMapper.xml @@ -329,7 +329,8 @@ limit 1 - \ No newline at end of file + + + + + \ No newline at end of file diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/store/service/impl/ChainStoreInfoServiceImpl.java b/fuintBackend/fuint-application/src/main/java/com/fuint/business/store/service/impl/ChainStoreInfoServiceImpl.java index 40378696d..a3491c8ba 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/store/service/impl/ChainStoreInfoServiceImpl.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/store/service/impl/ChainStoreInfoServiceImpl.java @@ -50,7 +50,15 @@ public class ChainStoreInfoServiceImpl extends ServiceImpl listVo(Page page, ChainStoreInfo chainStoreInfo) { AccountInfo nowAccountInfo = TokenUtil.getNowAccountInfo(); SysDept sysDept = deptService.getById(nowAccountInfo.getDeptId()); - IPage res = baseMapper.listVo(page,chainStoreInfo,sysDept.getAncestors()); + if (ObjectUtil.isEmpty(chainStoreInfo.getContractDeptId())) { + chainStoreInfo.setContractDeptId(nowAccountInfo.getDeptId()); + } + String ancestors = sysDept.getAncestors(); + if (!"0".equals(sysDept.getAncestors())) { + ancestors = sysDept.getAncestors()+sysDept.getDeptId(); + } + + IPage res = baseMapper.listVo(page,chainStoreInfo,ancestors); res.getRecords().forEach(it->{ LambdaQueryWrapper queryWrapper =new LambdaQueryWrapper<>(); if (ObjectUtil.isNotEmpty(chainStoreInfo.getStatus())) { diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/userManager/mapper/UserBalanceMapper.java b/fuintBackend/fuint-application/src/main/java/com/fuint/business/userManager/mapper/UserBalanceMapper.java index 30ade6f31..aa1135fa6 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/userManager/mapper/UserBalanceMapper.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/userManager/mapper/UserBalanceMapper.java @@ -3,6 +3,7 @@ package com.fuint.business.userManager.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.fuint.business.userManager.entity.UserBalance; import com.fuint.business.userManager.vo.UserBalanceVo; +import org.apache.ibatis.annotations.Param; public interface UserBalanceMapper extends BaseMapper { @@ -10,5 +11,5 @@ public interface UserBalanceMapper extends BaseMapper { int updateRefuelMoney(UserBalance userBalance); - int addUserBalance(Integer id, Double changeCardBalance); + int addUserBalance(@Param("id") Integer id, @Param("changeCardBalance") Double changeCardBalance); } diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/userManager/service/impl/UserBalanceServiceImpl.java b/fuintBackend/fuint-application/src/main/java/com/fuint/business/userManager/service/impl/UserBalanceServiceImpl.java index 61ca703c2..251d88784 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/userManager/service/impl/UserBalanceServiceImpl.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/userManager/service/impl/UserBalanceServiceImpl.java @@ -78,21 +78,28 @@ public class UserBalanceServiceImpl extends ServiceImpl> resultMapList = JSON.parseObject(userBalance.getRefuelMoney(), new TypeReference>>() {}); - - - for (Map stringStringMap : resultMapList) { - if (oilId.equals(stringStringMap.get("oilType"))) { - BigDecimal resRefuelMoney = new BigDecimal(stringStringMap.get("refuelMoney")); - BigDecimal refuelMoney = resRefuelMoney.add(new BigDecimal(changeOil.toString())); - stringStringMap.put("refuelMoney",resRefuelMoney.toString()); - break; + if (ObjectUtil.isNotEmpty(resultMapList)) { + for (Map stringStringMap : resultMapList) { + if (oilId.equals(stringStringMap.get("oilType"))) { + BigDecimal resRefuelMoney = new BigDecimal(stringStringMap.get("refuelMoney")); + BigDecimal refuelMoney = resRefuelMoney.add(new BigDecimal(changeOil.toString())); + stringStringMap.put("refuelMoney",resRefuelMoney.toString()); + break; + } } + String jsonString = JSON.toJSONString(resultMapList); + userBalance.setRefuelMoney(jsonString); } - String jsonString = JSON.toJSONString(resultMapList); - userBalance.setRefuelMoney(jsonString); + + + } + + int row = baseMapper.updateRefuelMoney(userBalance); + + // 增加屯油卡记录 return row; } @@ -100,6 +107,8 @@ public class UserBalanceServiceImpl extends ServiceImpl public int deleteDeptById(Long deptId); long getCountdown(); + + boolean isTopLevelNodes(Integer deptId); } diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/system/dept/service/impl/SysDeptServiceImpl.java b/fuintBackend/fuint-application/src/main/java/com/fuint/system/dept/service/impl/SysDeptServiceImpl.java index 6f56aa286..671ba4f82 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/system/dept/service/impl/SysDeptServiceImpl.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/system/dept/service/impl/SysDeptServiceImpl.java @@ -465,4 +465,13 @@ public class SysDeptServiceImpl extends ServiceImpl imple return -999; } + + @Override + public boolean isTopLevelNodes(Integer deptId) { + AccountInfo nowAccountInfo = TokenUtil.getNowAccountInfo(); + if (deptId.toString().equals(nowAccountInfo.getDeptId().toString())) { + return true; + } + return false; + } } diff --git a/fuintBackend/fuint-application/src/main/resources/application.properties b/fuintBackend/fuint-application/src/main/resources/application.properties index f95f1ecad..33fe1a245 100644 --- a/fuintBackend/fuint-application/src/main/resources/application.properties +++ b/fuintBackend/fuint-application/src/main/resources/application.properties @@ -2,7 +2,7 @@ server.port=8008 env.profile=dev #env.properties.path=D:/workspaces/oilSystem/fuintBackend/configure/ -env.properties.path=D:/oil/oil/oilSystem/fuintBackend/configure/ +env.properties.path=D:/code/oilSystem/fuintBackend/configure/ diff --git a/fuintBackend/fuint-repository/src/main/java/com/fuint/repository/model/TAccount.java b/fuintBackend/fuint-repository/src/main/java/com/fuint/repository/model/TAccount.java index bd5023943..fd33c7c2f 100644 --- a/fuintBackend/fuint-repository/src/main/java/com/fuint/repository/model/TAccount.java +++ b/fuintBackend/fuint-repository/src/main/java/com/fuint/repository/model/TAccount.java @@ -73,6 +73,8 @@ public class TAccount extends BaseEntity implements Serializable { private Long deptId; @TableField(exist = false) private String deptName; + @TableField(exist = false) + private String deptType; // @TableField(exist = false) private String mobile; } diff --git a/fuintBackend/fuint-repository/src/main/resources/mapper/TAccountMapper.xml b/fuintBackend/fuint-repository/src/main/resources/mapper/TAccountMapper.xml index d17d62487..b1ffd6630 100644 --- a/fuintBackend/fuint-repository/src/main/resources/mapper/TAccountMapper.xml +++ b/fuintBackend/fuint-repository/src/main/resources/mapper/TAccountMapper.xml @@ -26,7 +26,7 @@