|
@@ -10,6 +10,7 @@ import org.apache.shiro.SecurityUtils;
|
|
|
import org.jeecg.common.api.vo.Result;
|
|
|
import org.jeecg.common.exception.JeecgBootException;
|
|
|
import org.jeecg.common.system.vo.LoginUser;
|
|
|
+import org.jeecg.common.util.DateUtils;
|
|
|
import org.jeecg.common.util.oConvertUtils;
|
|
|
import org.jeecg.modules.cost.entity.*;
|
|
|
import org.jeecg.modules.cost.mapper.*;
|
|
@@ -190,6 +191,8 @@ public class SyCostAllocationServiceImpl extends ServiceImpl<SyCostAllocationMap
|
|
|
//制单人 取当前查询人
|
|
|
LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
|
|
|
syCostAllocation.setPreparedBy(sysUser.getRealname());
|
|
|
+ syCostAllocation.setQueryBy(sysUser.getRealname());
|
|
|
+ syCostAllocation.setQueryTime(DateUtils.getDate());
|
|
|
|
|
|
//查询单证面损数据 面料(不)含税成本
|
|
|
SyFabricLossReport syLossReport1 = null;
|