|
@@ -22,7 +22,7 @@ import com.fjhx.oa.entity.education.po.EducationSubsidy;
|
|
|
import com.fjhx.oa.mapper.activity.ActivityPriceInventoryMapper;
|
|
|
import com.fjhx.oa.service.activity.ActivityPriceInventoryDetailService;
|
|
|
import com.fjhx.oa.service.activity.ActivityPriceInventoryService;
|
|
|
-import com.fjhx.tenant.utils.DeptUstil;
|
|
|
+import com.fjhx.tenant.utils.DeptUtils;
|
|
|
import com.ruoyi.common.core.domain.BasePo;
|
|
|
import com.ruoyi.common.utils.SecurityUtils;
|
|
|
import com.ruoyi.common.utils.wrapper.IWrapper;
|
|
@@ -92,14 +92,14 @@ public class ActivityPriceInventoryServiceImpl extends ServiceImpl<ActivityPrice
|
|
|
}
|
|
|
//中心、部门、申请人
|
|
|
UserUtil.assignmentNickName(records, ActivityPriceInventoryVo::getCreateUser, ActivityPriceInventoryVo::setCreateUserName);
|
|
|
- DeptUstil.assignmentNickName(records, ActivityPriceInventoryVo::getDeptId, ActivityPriceInventoryVo::setDeptName);
|
|
|
- DeptUstil.assignmentNickName(records, ActivityPriceInventoryVo::getCompanyId, ActivityPriceInventoryVo::setCompanyName);
|
|
|
+ DeptUtils.assignmentNickName(records, ActivityPriceInventoryVo::getDeptId, ActivityPriceInventoryVo::setDeptName);
|
|
|
+ DeptUtils.assignmentNickName(records, ActivityPriceInventoryVo::getCompanyId, ActivityPriceInventoryVo::setCompanyName);
|
|
|
//店铺名称
|
|
|
shopInfoService.attributeAssign(records, ActivityPriceInventory::getShopId, (item, shop) -> {
|
|
|
item.setShopName(shop.getName());
|
|
|
});
|
|
|
//支持方
|
|
|
- DeptUstil.assignmentNickName(records, ActivityPriceInventoryVo::getSupporterId, ActivityPriceInventoryVo::setSupporterName);
|
|
|
+ DeptUtils.assignmentNickName(records, ActivityPriceInventoryVo::getSupporterId, ActivityPriceInventoryVo::setSupporterName);
|
|
|
}
|
|
|
|
|
|
@DSTransactional
|