必填字段插入

master
郑明梁 2 years ago
parent d5aab2f18c
commit 9ebf416b75

@ -17,6 +17,7 @@ import com.glxp.api.req.thrsys.ThrCorpExportRequest;
import com.glxp.api.req.thrsys.ThrUnitMaintainFilterRequest; import com.glxp.api.req.thrsys.ThrUnitMaintainFilterRequest;
import com.glxp.api.res.PageSimpleResponse; import com.glxp.api.res.PageSimpleResponse;
import com.glxp.api.res.thrsys.ThrCorpsResponse; import com.glxp.api.res.thrsys.ThrCorpsResponse;
import com.glxp.api.service.auth.CustomerService;
import com.glxp.api.service.thrsys.ThrCorpExportLogService; import com.glxp.api.service.thrsys.ThrCorpExportLogService;
import com.glxp.api.service.thrsys.ThrCorpService; import com.glxp.api.service.thrsys.ThrCorpService;
import com.glxp.api.service.thrsys.ThrCorpsDlService; import com.glxp.api.service.thrsys.ThrCorpsDlService;
@ -53,6 +54,8 @@ public class ThrCorpExportLogController {
@Resource @Resource
private ErpBasicClient erpBasicClient; private ErpBasicClient erpBasicClient;
@Resource
private CustomerService customerService;
@GetMapping("/udiwms/thrCorp/exportLog/filter") @GetMapping("/udiwms/thrCorp/exportLog/filter")
public BaseResponse filter(FilterThrCorpExportLogRequest filterThrCorpExportLogRequest, public BaseResponse filter(FilterThrCorpExportLogRequest filterThrCorpExportLogRequest,
@ -140,6 +143,9 @@ public class ThrCorpExportLogController {
thrCorpExportLogEntity.setUpdateTime(new Date()); thrCorpExportLogEntity.setUpdateTime(new Date());
thrCorpExportLogEntity.setDlCount(0); thrCorpExportLogEntity.setDlCount(0);
thrCorpExportLogEntity.setType(BasicProcessStatus.EXPORT_EXCEL); thrCorpExportLogEntity.setType(BasicProcessStatus.EXPORT_EXCEL);
thrCorpExportLogEntity.setCreateUser(String.valueOf(customerService.getUserId()));
thrCorpExportLogEntity.setUpdateUser(String.valueOf(customerService.getUserId()));
thrCorpExportLogEntity.setCreateTime(new Date());
thrCorpExportLogService.insertThrCorpExportLog(thrCorpExportLogEntity); thrCorpExportLogService.insertThrCorpExportLog(thrCorpExportLogEntity);
//thrCorpsDlService.genExcel(genKey, thrCorpExportRequest); //thrCorpsDlService.genExcel(genKey, thrCorpExportRequest);
//修改为导出json文件 //修改为导出json文件
@ -171,6 +177,9 @@ public class ThrCorpExportLogController {
thrCorpExportLogEntity.setUpdateTime(new Date()); thrCorpExportLogEntity.setUpdateTime(new Date());
thrCorpExportLogEntity.setDlCount(0); thrCorpExportLogEntity.setDlCount(0);
thrCorpExportLogEntity.setType(BasicProcessStatus.EXPORT_SMP); thrCorpExportLogEntity.setType(BasicProcessStatus.EXPORT_SMP);
thrCorpExportLogEntity.setCreateUser(String.valueOf(customerService.getUserId()));
thrCorpExportLogEntity.setUpdateUser(String.valueOf(customerService.getUserId()));
thrCorpExportLogEntity.setCreateTime(new Date());
thrCorpExportLogService.insertThrCorpExportLog(thrCorpExportLogEntity); thrCorpExportLogService.insertThrCorpExportLog(thrCorpExportLogEntity);
thrCorpsDlService.uploadSmp(genKey, thrCorpExportRequest); thrCorpsDlService.uploadSmp(genKey, thrCorpExportRequest);
return ResultVOUtils.success("后台正在导出生成udi文件请稍后刷新查看!"); return ResultVOUtils.success("后台正在导出生成udi文件请稍后刷新查看!");

@ -14,4 +14,5 @@ public class FilterThrCorpImportLogRequest extends ListPageRequest {
private String thirdSysFk; private String thirdSysFk;
private String fromType; private String fromType;
private String lastUpdateTime; private String lastUpdateTime;
private Integer type;
} }

@ -16,6 +16,7 @@ import com.glxp.api.req.thrsys.*;
import com.glxp.api.res.PageSimpleResponse; import com.glxp.api.res.PageSimpleResponse;
import com.glxp.api.res.thrsys.ThrCorpsResponse; import com.glxp.api.res.thrsys.ThrCorpsResponse;
import com.glxp.api.res.thrsys.ThrProductsResponse; import com.glxp.api.res.thrsys.ThrProductsResponse;
import com.glxp.api.service.auth.CustomerService;
import com.glxp.api.service.system.SyncDataSetService; import com.glxp.api.service.system.SyncDataSetService;
import com.glxp.api.util.CustomUtil; import com.glxp.api.util.CustomUtil;
import com.glxp.api.util.ExcelUtil; import com.glxp.api.util.ExcelUtil;
@ -54,6 +55,9 @@ public class ThrCorpsDlService {
SyncDataSetService syncDataSetService; SyncDataSetService syncDataSetService;
@Resource @Resource
HttpOkClient httpOkClient; HttpOkClient httpOkClient;
@Resource
CustomerService customerService;
public String getIpUrl() { public String getIpUrl() {
SyncDataSetEntity syncDataSetEntity = syncDataSetService.findSet(); SyncDataSetEntity syncDataSetEntity = syncDataSetService.findSet();
@ -77,8 +81,11 @@ public class ThrCorpsDlService {
ThrCorpImportDetailEntity thrCorpEntity = new ThrCorpImportDetailEntity(); ThrCorpImportDetailEntity thrCorpEntity = new ThrCorpImportDetailEntity();
BeanUtils.copyProperties(item, thrCorpEntity); BeanUtils.copyProperties(item, thrCorpEntity);
thrCorpEntity.setUnitId(item.getUnitId()); thrCorpEntity.setUnitId(item.getUnitId());
thrCorpEntity.setGenKeyFk(finalGenKey);
thrCorpEntity.setUpdateTime(new Date()); thrCorpEntity.setUpdateTime(new Date());
thrCorpEntity.setCreateTime(new Date());
thrCorpEntity.setCreateUser(String.valueOf(customerService.getUserId()));
thrCorpEntity.setUpdateUser(String.valueOf(customerService.getUserId()));
thrCorpEntity.setGenKeyFk(finalGenKey);
thrCorpEntity.setThirdSysFk(thirdSys); thrCorpEntity.setThirdSysFk(thirdSys);
return thrCorpEntity; return thrCorpEntity;
} }
@ -93,9 +100,13 @@ public class ThrCorpsDlService {
BeanUtils.copyProperties(item, thrProductsEntity); BeanUtils.copyProperties(item, thrProductsEntity);
thrProductsEntity.setThirdSysFk(thirdSys); thrProductsEntity.setThirdSysFk(thirdSys);
thrProductsEntity.setUpdateTime(new Date()); thrProductsEntity.setUpdateTime(new Date());
thrProductsEntity.setCreateTime(new Date());
thrProductsEntity.setCreateUser(String.valueOf(customerService.getUserId()));
thrProductsEntity.setUpdateUser(String.valueOf(customerService.getUserId()));
return thrProductsEntity; return thrProductsEntity;
} }
).collect(Collectors.toList()); ).collect(Collectors.toList());
thrCorpService.insertThrCorpss(thrCorpEntities); thrCorpService.insertThrCorpss(thrCorpEntities);
redisUtil.set(Constant.dlThrProducts, "false"); redisUtil.set(Constant.dlThrProducts, "false");
WebSocketServer.sendInfo("往来单位信息下载已完成,请刷新查看!", "sid"); WebSocketServer.sendInfo("往来单位信息下载已完成,请刷新查看!", "sid");
@ -275,6 +286,9 @@ public class ThrCorpsDlService {
thrCorpEntity.setUnitId(item.getUnitId()); thrCorpEntity.setUnitId(item.getUnitId());
thrCorpEntity.setGenKeyFk(finalGenKey); thrCorpEntity.setGenKeyFk(finalGenKey);
thrCorpEntity.setUpdateTime(new Date()); thrCorpEntity.setUpdateTime(new Date());
thrCorpEntity.setCreateTime(new Date());
thrCorpEntity.setCreateUser(String.valueOf(customerService.getUserId()));
thrCorpEntity.setUpdateUser(String.valueOf(customerService.getUserId()));
thrCorpEntity.setThirdSysFk(thirdSys); thrCorpEntity.setThirdSysFk(thirdSys);
return thrCorpEntity; return thrCorpEntity;
} }

@ -10,6 +10,7 @@ import com.glxp.api.http.ErpInvClient;
import com.glxp.api.req.thrsys.*; import com.glxp.api.req.thrsys.*;
import com.glxp.api.res.PageSimpleResponse; import com.glxp.api.res.PageSimpleResponse;
import com.glxp.api.res.thrsys.ThrInvProductResponse; import com.glxp.api.res.thrsys.ThrInvProductResponse;
import com.glxp.api.service.auth.CustomerService;
import com.glxp.api.util.ExcelUtil; import com.glxp.api.util.ExcelUtil;
import com.glxp.api.util.RedisUtil; import com.glxp.api.util.RedisUtil;
import org.springframework.beans.BeanUtils; import org.springframework.beans.BeanUtils;
@ -39,6 +40,8 @@ public class ThrInvProductsDlService {
ThrInvProductsDetailService thrInvProductsDetailService; ThrInvProductsDetailService thrInvProductsDetailService;
@Resource @Resource
ErpInvClient erpInvClient; ErpInvClient erpInvClient;
@Resource
CustomerService customerServicel;
@Async @Async
public void importSelcyInvProducrs(String genKey, String thirdSys, List<ThrInvProductResponse> ThrInvProductResponses) { public void importSelcyInvProducrs(String genKey, String thirdSys, List<ThrInvProductResponse> ThrInvProductResponses) {
@ -60,6 +63,9 @@ public class ThrInvProductsDlService {
thrProductsEntity.setGenKeyFk(genKey); thrProductsEntity.setGenKeyFk(genKey);
thrProductsEntity.setThirdSysFk(thirdSys); thrProductsEntity.setThirdSysFk(thirdSys);
thrProductsEntity.setUpdateTime(new Date()); thrProductsEntity.setUpdateTime(new Date());
thrProductsEntity.setCreateTime(new Date());
thrProductsEntity.setCreateUser(String.valueOf(customerServicel.getUserId()));
thrProductsEntity.setUpdateUser(String.valueOf(customerServicel.getUserId()));
return thrProductsEntity; return thrProductsEntity;
} }
).collect(Collectors.toList()); ).collect(Collectors.toList());
@ -74,6 +80,9 @@ public class ThrInvProductsDlService {
ThrInvProductsEntity thrInvProductsEntity = new ThrInvProductsEntity(); ThrInvProductsEntity thrInvProductsEntity = new ThrInvProductsEntity();
BeanUtils.copyProperties(item, thrInvProductsEntity); BeanUtils.copyProperties(item, thrInvProductsEntity);
thrInvProductsEntity.setUpdateTime(new Date()); thrInvProductsEntity.setUpdateTime(new Date());
thrInvProductsEntity.setCreateTime(new Date());
thrInvProductsEntity.setCreateUser(String.valueOf(customerServicel.getUserId()));
thrInvProductsEntity.setUpdateUser(String.valueOf(customerServicel.getUserId()));
return thrInvProductsEntity; return thrInvProductsEntity;
} }
).collect(Collectors.toList()); ).collect(Collectors.toList());
@ -107,6 +116,9 @@ public class ThrInvProductsDlService {
ThrInvProductsEntity thrInvProductsEntity = new ThrInvProductsEntity(); ThrInvProductsEntity thrInvProductsEntity = new ThrInvProductsEntity();
BeanUtils.copyProperties(item, thrInvProductsEntity); BeanUtils.copyProperties(item, thrInvProductsEntity);
thrInvProductsEntity.setUpdateTime(new Date()); thrInvProductsEntity.setUpdateTime(new Date());
thrInvProductsEntity.setCreateTime(new Date());
thrInvProductsEntity.setCreateUser(String.valueOf(customerServicel.getUserId()));
thrInvProductsEntity.setUpdateUser(String.valueOf(customerServicel.getUserId()));
return thrInvProductsEntity; return thrInvProductsEntity;
} }
).collect(Collectors.toList()); ).collect(Collectors.toList());
@ -194,6 +206,9 @@ public class ThrInvProductsDlService {
thrInvProductsImportDetailEntity.setThirdSysFk(thirdSys); thrInvProductsImportDetailEntity.setThirdSysFk(thirdSys);
thrInvProductsImportDetailEntity.setGenKeyFk(genKey); thrInvProductsImportDetailEntity.setGenKeyFk(genKey);
thrInvProductsImportDetailEntity.setUpdateTime(new Date()); thrInvProductsImportDetailEntity.setUpdateTime(new Date());
thrInvProductsImportDetailEntity.setCreateTime(new Date());
thrInvProductsImportDetailEntity.setCreateUser(String.valueOf(customerServicel.getUserId()));
thrInvProductsImportDetailEntity.setUpdateUser(String.valueOf(customerServicel.getUserId()));
return thrInvProductsImportDetailEntity; return thrInvProductsImportDetailEntity;
} }
).collect(Collectors.toList()); ).collect(Collectors.toList());
@ -205,6 +220,9 @@ public class ThrInvProductsDlService {
ThrInvProductsEntity thrInvProductsEntity = new ThrInvProductsEntity(); ThrInvProductsEntity thrInvProductsEntity = new ThrInvProductsEntity();
BeanUtils.copyProperties(item, thrInvProductsEntity); BeanUtils.copyProperties(item, thrInvProductsEntity);
thrInvProductsEntity.setUpdateTime(new Date()); thrInvProductsEntity.setUpdateTime(new Date());
thrInvProductsEntity.setCreateTime(new Date());
thrInvProductsEntity.setCreateUser(String.valueOf(customerServicel.getUserId()));
thrInvProductsEntity.setUpdateUser(String.valueOf(customerServicel.getUserId()));
return thrInvProductsEntity; return thrInvProductsEntity;
} }
).collect(Collectors.toList()); ).collect(Collectors.toList());
@ -243,6 +261,9 @@ public class ThrInvProductsDlService {
thrProductsEntity.setGenKeyFk(genKey); thrProductsEntity.setGenKeyFk(genKey);
thrProductsEntity.setThirdSysFk(thirdSys); thrProductsEntity.setThirdSysFk(thirdSys);
thrProductsEntity.setUpdateTime(new Date()); thrProductsEntity.setUpdateTime(new Date());
thrProductsEntity.setCreateTime(new Date());
thrProductsEntity.setCreateUser(String.valueOf(customerServicel.getUserId()));
thrProductsEntity.setUpdateUser(String.valueOf(customerServicel.getUserId()));
return thrProductsEntity; return thrProductsEntity;
} }
).collect(Collectors.toList()); ).collect(Collectors.toList());

@ -6,17 +6,21 @@ import com.github.pagehelper.PageHelper;
import com.glxp.api.dao.thrsys.ThrCorpExportLogDao; import com.glxp.api.dao.thrsys.ThrCorpExportLogDao;
import com.glxp.api.entity.thrsys.ThrCorpExportLogEntity; import com.glxp.api.entity.thrsys.ThrCorpExportLogEntity;
import com.glxp.api.req.thrsys.FilterThrCorpExportLogRequest; import com.glxp.api.req.thrsys.FilterThrCorpExportLogRequest;
import com.glxp.api.service.auth.CustomerService;
import com.glxp.api.service.thrsys.ThrCorpExportLogService; import com.glxp.api.service.thrsys.ThrCorpExportLogService;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.util.Collections; import java.util.Collections;
import java.util.Date;
import java.util.List; import java.util.List;
@Service @Service
public class ThrCorpExportLogServiceImpl implements ThrCorpExportLogService { public class ThrCorpExportLogServiceImpl implements ThrCorpExportLogService {
@Resource @Resource
ThrCorpExportLogDao thrCorpExportLogDao; ThrCorpExportLogDao thrCorpExportLogDao;
@Resource
CustomerService customerService;
@Override @Override
public ThrCorpExportLogEntity selectByGenKey(String genKey) { public ThrCorpExportLogEntity selectByGenKey(String genKey) {
@ -49,6 +53,10 @@ public class ThrCorpExportLogServiceImpl implements ThrCorpExportLogService {
@Override @Override
public boolean updateThrCorpExportLog(ThrCorpExportLogEntity thrCorpExportLogEntity) { public boolean updateThrCorpExportLog(ThrCorpExportLogEntity thrCorpExportLogEntity) {
//塞入创建时间创建人
thrCorpExportLogEntity.setCreateTime(new Date());
thrCorpExportLogEntity.setCreateUser(String.valueOf(customerService.getUserId()));
thrCorpExportLogEntity.setUpdateUser(String.valueOf(customerService.getUserId()));
return thrCorpExportLogDao.updateThrCorpExportLog(thrCorpExportLogEntity); return thrCorpExportLogDao.updateThrCorpExportLog(thrCorpExportLogEntity);
} }

@ -4,11 +4,13 @@ import com.github.pagehelper.PageHelper;
import com.glxp.api.dao.thrsys.ThrCorpImportDetailDao; import com.glxp.api.dao.thrsys.ThrCorpImportDetailDao;
import com.glxp.api.entity.thrsys.ThrCorpImportDetailEntity; import com.glxp.api.entity.thrsys.ThrCorpImportDetailEntity;
import com.glxp.api.req.thrsys.FilterThrCorpImportLogRequest; import com.glxp.api.req.thrsys.FilterThrCorpImportLogRequest;
import com.glxp.api.service.auth.CustomerService;
import com.glxp.api.service.thrsys.ThrCorpImportDetailService; import com.glxp.api.service.thrsys.ThrCorpImportDetailService;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.util.Collections; import java.util.Collections;
import java.util.Date;
import java.util.List; import java.util.List;
@Service @Service
@ -16,6 +18,8 @@ public class ThrCorpImportDetailServiceImpl implements ThrCorpImportDetailServic
@Resource @Resource
ThrCorpImportDetailDao thrCorpImportDetailDao; ThrCorpImportDetailDao thrCorpImportDetailDao;
@Resource
CustomerService customerServicel;
@Override @Override
public List<ThrCorpImportDetailEntity> filterCorpDetailImport(FilterThrCorpImportLogRequest filterThrCorpImportLogRequest) { public List<ThrCorpImportDetailEntity> filterCorpDetailImport(FilterThrCorpImportLogRequest filterThrCorpImportLogRequest) {
@ -32,11 +36,19 @@ public class ThrCorpImportDetailServiceImpl implements ThrCorpImportDetailServic
@Override @Override
public boolean insertCorpDetailImport(ThrCorpImportDetailEntity thrCorpImportDetailEntity) { public boolean insertCorpDetailImport(ThrCorpImportDetailEntity thrCorpImportDetailEntity) {
thrCorpImportDetailEntity.setUpdateTime(new Date());
thrCorpImportDetailEntity.setCreateTime(new Date());
thrCorpImportDetailEntity.setCreateUser(String.valueOf(customerServicel.getUserId()));
thrCorpImportDetailEntity.setUpdateUser(String.valueOf(customerServicel.getUserId()));
return thrCorpImportDetailDao.insertCorpDetailImport(thrCorpImportDetailEntity); return thrCorpImportDetailDao.insertCorpDetailImport(thrCorpImportDetailEntity);
} }
@Override @Override
public boolean updateCorpDetailImport(ThrCorpImportDetailEntity thrCorpImportDetailEntity) { public boolean updateCorpDetailImport(ThrCorpImportDetailEntity thrCorpImportDetailEntity) {
thrCorpImportDetailEntity.setUpdateTime(new Date());
thrCorpImportDetailEntity.setCreateTime(new Date());
thrCorpImportDetailEntity.setCreateUser(String.valueOf(customerServicel.getUserId()));
thrCorpImportDetailEntity.setUpdateUser(String.valueOf(customerServicel.getUserId()));
return thrCorpImportDetailDao.updateCorpDetailImport(thrCorpImportDetailEntity); return thrCorpImportDetailDao.updateCorpDetailImport(thrCorpImportDetailEntity);
} }

@ -4,17 +4,21 @@ import com.github.pagehelper.PageHelper;
import com.glxp.api.dao.thrsys.ThrCorpImportLogDao; import com.glxp.api.dao.thrsys.ThrCorpImportLogDao;
import com.glxp.api.entity.thrsys.ThrCorpImportLogEntity; import com.glxp.api.entity.thrsys.ThrCorpImportLogEntity;
import com.glxp.api.req.thrsys.FilterThrCorpImportLogRequest; import com.glxp.api.req.thrsys.FilterThrCorpImportLogRequest;
import com.glxp.api.service.auth.CustomerService;
import com.glxp.api.service.thrsys.ThrCorpImportLogService; import com.glxp.api.service.thrsys.ThrCorpImportLogService;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.util.Collections; import java.util.Collections;
import java.util.Date;
import java.util.List; import java.util.List;
@Service @Service
public class ThrCorpImportLogServiceImpl implements ThrCorpImportLogService { public class ThrCorpImportLogServiceImpl implements ThrCorpImportLogService {
@Resource @Resource
ThrCorpImportLogDao thrCorpImportLogDao; ThrCorpImportLogDao thrCorpImportLogDao;
@Resource
CustomerService customerServicel;
@Override @Override
public ThrCorpImportLogEntity selectByGenKey(String genKey) { public ThrCorpImportLogEntity selectByGenKey(String genKey) {
@ -43,11 +47,19 @@ public class ThrCorpImportLogServiceImpl implements ThrCorpImportLogService {
@Override @Override
public boolean insertImportLog(ThrCorpImportLogEntity thrCorpImportLogEntity) { public boolean insertImportLog(ThrCorpImportLogEntity thrCorpImportLogEntity) {
thrCorpImportLogEntity.setUpdateTime(new Date());
thrCorpImportLogEntity.setCreateTime(new Date());
thrCorpImportLogEntity.setCreateUser(String.valueOf(customerServicel.getUserId()));
thrCorpImportLogEntity.setUpdateUser(String.valueOf(customerServicel.getUserId()));
return thrCorpImportLogDao.insertImportLog(thrCorpImportLogEntity); return thrCorpImportLogDao.insertImportLog(thrCorpImportLogEntity);
} }
@Override @Override
public boolean updateImportLog(ThrCorpImportLogEntity thrCorpImportLogEntity) { public boolean updateImportLog(ThrCorpImportLogEntity thrCorpImportLogEntity) {
thrCorpImportLogEntity.setUpdateTime(new Date());
thrCorpImportLogEntity.setCreateTime(new Date());
thrCorpImportLogEntity.setCreateUser(String.valueOf(customerServicel.getUserId()));
thrCorpImportLogEntity.setUpdateUser(String.valueOf(customerServicel.getUserId()));
return thrCorpImportLogDao.updateImportLog(thrCorpImportLogEntity); return thrCorpImportLogDao.updateImportLog(thrCorpImportLogEntity);
} }

@ -4,11 +4,13 @@ import com.github.pagehelper.PageHelper;
import com.glxp.api.dao.thrsys.ThrInvProductsDetailDao; import com.glxp.api.dao.thrsys.ThrInvProductsDetailDao;
import com.glxp.api.entity.thrsys.ThrInvProductsImportDetailEntity; import com.glxp.api.entity.thrsys.ThrInvProductsImportDetailEntity;
import com.glxp.api.req.thrsys.FilterThrCorpImportLogRequest; import com.glxp.api.req.thrsys.FilterThrCorpImportLogRequest;
import com.glxp.api.service.auth.CustomerService;
import com.glxp.api.service.thrsys.ThrInvProductsDetailService; import com.glxp.api.service.thrsys.ThrInvProductsDetailService;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.util.Collections; import java.util.Collections;
import java.util.Date;
import java.util.List; import java.util.List;
@Service @Service
@ -16,6 +18,8 @@ public class ThrInvProductsDetailServiceImpl implements ThrInvProductsDetailServ
@Resource @Resource
ThrInvProductsDetailDao thrInvProductsDetailDao; ThrInvProductsDetailDao thrInvProductsDetailDao;
@Resource
CustomerService customerServicel;
@Override @Override
public List<ThrInvProductsImportDetailEntity> filterInvProductsDetailImport(FilterThrCorpImportLogRequest filterThrCorpImportLogRequest) { public List<ThrInvProductsImportDetailEntity> filterInvProductsDetailImport(FilterThrCorpImportLogRequest filterThrCorpImportLogRequest) {
@ -32,11 +36,19 @@ public class ThrInvProductsDetailServiceImpl implements ThrInvProductsDetailServ
@Override @Override
public boolean insertInvProductsDetailImport(ThrInvProductsImportDetailEntity thrInvProductsImportDetailEntity) { public boolean insertInvProductsDetailImport(ThrInvProductsImportDetailEntity thrInvProductsImportDetailEntity) {
thrInvProductsImportDetailEntity.setUpdateTime(new Date());
thrInvProductsImportDetailEntity.setCreateTime(new Date());
thrInvProductsImportDetailEntity.setCreateUser(String.valueOf(customerServicel.getUserId()));
thrInvProductsImportDetailEntity.setUpdateUser(String.valueOf(customerServicel.getUserId()));
return thrInvProductsDetailDao.insertInvProductsDetailImport(thrInvProductsImportDetailEntity); return thrInvProductsDetailDao.insertInvProductsDetailImport(thrInvProductsImportDetailEntity);
} }
@Override @Override
public boolean updateInvProductsDetailImport(ThrInvProductsImportDetailEntity thrInvProductsImportDetailEntity) { public boolean updateInvProductsDetailImport(ThrInvProductsImportDetailEntity thrInvProductsImportDetailEntity) {
thrInvProductsImportDetailEntity.setUpdateTime(new Date());
thrInvProductsImportDetailEntity.setCreateTime(new Date());
thrInvProductsImportDetailEntity.setCreateUser(String.valueOf(customerServicel.getUserId()));
thrInvProductsImportDetailEntity.setUpdateUser(String.valueOf(customerServicel.getUserId()));
return thrInvProductsDetailDao.updateInvProductsDetailImport(thrInvProductsImportDetailEntity); return thrInvProductsDetailDao.updateInvProductsDetailImport(thrInvProductsImportDetailEntity);
} }

@ -4,11 +4,13 @@ import com.github.pagehelper.PageHelper;
import com.glxp.api.dao.thrsys.ThrInvProductsExportLogDao; import com.glxp.api.dao.thrsys.ThrInvProductsExportLogDao;
import com.glxp.api.entity.thrsys.ThrInvProductsExportLogEntity; import com.glxp.api.entity.thrsys.ThrInvProductsExportLogEntity;
import com.glxp.api.req.thrsys.FilterThrCorpExportLogRequest; import com.glxp.api.req.thrsys.FilterThrCorpExportLogRequest;
import com.glxp.api.service.auth.CustomerService;
import com.glxp.api.service.thrsys.ThrInvProductsExportLogService; import com.glxp.api.service.thrsys.ThrInvProductsExportLogService;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.util.Collections; import java.util.Collections;
import java.util.Date;
import java.util.List; import java.util.List;
@Service @Service
@ -16,6 +18,8 @@ public class ThrInvProductsExportLogServiceImpl implements ThrInvProductsExportL
@Resource @Resource
ThrInvProductsExportLogDao thrInvProductsExportLogDao; ThrInvProductsExportLogDao thrInvProductsExportLogDao;
@Resource
CustomerService customerServicel;
@Override @Override
public ThrInvProductsExportLogEntity selectByGenKey(String genKey) { public ThrInvProductsExportLogEntity selectByGenKey(String genKey) {
@ -43,11 +47,19 @@ public class ThrInvProductsExportLogServiceImpl implements ThrInvProductsExportL
@Override @Override
public boolean insertThrInvProductsExportLog(ThrInvProductsExportLogEntity thrInvProductsExportLogEntity) { public boolean insertThrInvProductsExportLog(ThrInvProductsExportLogEntity thrInvProductsExportLogEntity) {
thrInvProductsExportLogEntity.setUpdateTime(new Date());
thrInvProductsExportLogEntity.setCreateTime(new Date());
thrInvProductsExportLogEntity.setCreateUser(String.valueOf(customerServicel.getUserId()));
thrInvProductsExportLogEntity.setUpdateUser(String.valueOf(customerServicel.getUserId()));
return thrInvProductsExportLogDao.insertThrInvProductsExportLog(thrInvProductsExportLogEntity); return thrInvProductsExportLogDao.insertThrInvProductsExportLog(thrInvProductsExportLogEntity);
} }
@Override @Override
public boolean updateThrInvProductsExportLog(ThrInvProductsExportLogEntity thrInvProductsExportLogEntity) { public boolean updateThrInvProductsExportLog(ThrInvProductsExportLogEntity thrInvProductsExportLogEntity) {
thrInvProductsExportLogEntity.setUpdateTime(new Date());
thrInvProductsExportLogEntity.setCreateTime(new Date());
thrInvProductsExportLogEntity.setCreateUser(String.valueOf(customerServicel.getUserId()));
thrInvProductsExportLogEntity.setUpdateUser(String.valueOf(customerServicel.getUserId()));
return thrInvProductsExportLogDao.updateThrInvProductsExportLog(thrInvProductsExportLogEntity); return thrInvProductsExportLogDao.updateThrInvProductsExportLog(thrInvProductsExportLogEntity);
} }

@ -4,11 +4,13 @@ import com.github.pagehelper.PageHelper;
import com.glxp.api.dao.thrsys.ThrInvProductsImportLogDao; import com.glxp.api.dao.thrsys.ThrInvProductsImportLogDao;
import com.glxp.api.entity.thrsys.ThrInvProductsImportLogEntity; import com.glxp.api.entity.thrsys.ThrInvProductsImportLogEntity;
import com.glxp.api.req.thrsys.FilterThrCorpImportLogRequest; import com.glxp.api.req.thrsys.FilterThrCorpImportLogRequest;
import com.glxp.api.service.auth.CustomerService;
import com.glxp.api.service.thrsys.ThrInvProductsImportLogService; import com.glxp.api.service.thrsys.ThrInvProductsImportLogService;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.util.Collections; import java.util.Collections;
import java.util.Date;
import java.util.List; import java.util.List;
@Service @Service
@ -17,6 +19,8 @@ public class ThrInvProductsImportLogServiceImpl implements ThrInvProductsImportL
@Resource @Resource
ThrInvProductsImportLogDao thrInvProductsImportLogDao; ThrInvProductsImportLogDao thrInvProductsImportLogDao;
@Resource
CustomerService customerServicel;
@Override @Override
public List<ThrInvProductsImportLogEntity> filterThrInvProductsImportLog(FilterThrCorpImportLogRequest filterThrCorpImportLogRequest) { public List<ThrInvProductsImportLogEntity> filterThrInvProductsImportLog(FilterThrCorpImportLogRequest filterThrCorpImportLogRequest) {
@ -33,11 +37,19 @@ public class ThrInvProductsImportLogServiceImpl implements ThrInvProductsImportL
@Override @Override
public boolean insertImportLog(ThrInvProductsImportLogEntity thrInvProductsImportLogEntity) { public boolean insertImportLog(ThrInvProductsImportLogEntity thrInvProductsImportLogEntity) {
thrInvProductsImportLogEntity.setUpdateTime(new Date());
thrInvProductsImportLogEntity.setCreateTime(new Date());
thrInvProductsImportLogEntity.setCreateUser(String.valueOf(customerServicel.getUserId()));
thrInvProductsImportLogEntity.setUpdateUser(String.valueOf(customerServicel.getUserId()));
return thrInvProductsImportLogDao.insertImportLog(thrInvProductsImportLogEntity); return thrInvProductsImportLogDao.insertImportLog(thrInvProductsImportLogEntity);
} }
@Override @Override
public boolean updateImportLog(ThrInvProductsImportLogEntity thrInvProductsImportLogEntity) { public boolean updateImportLog(ThrInvProductsImportLogEntity thrInvProductsImportLogEntity) {
thrInvProductsImportLogEntity.setUpdateTime(new Date());
thrInvProductsImportLogEntity.setCreateTime(new Date());
thrInvProductsImportLogEntity.setCreateUser(String.valueOf(customerServicel.getUserId()));
thrInvProductsImportLogEntity.setUpdateUser(String.valueOf(customerServicel.getUserId()));
return thrInvProductsImportLogDao.updateImportLog(thrInvProductsImportLogEntity); return thrInvProductsImportLogDao.updateImportLog(thrInvProductsImportLogEntity);
} }

@ -5,11 +5,13 @@ import com.github.pagehelper.PageHelper;
import com.glxp.api.dao.thrsys.ThrInvProductsDao; import com.glxp.api.dao.thrsys.ThrInvProductsDao;
import com.glxp.api.entity.thrsys.ThrInvProductsEntity; import com.glxp.api.entity.thrsys.ThrInvProductsEntity;
import com.glxp.api.req.thrsys.FilterThrInvProductsRequest; import com.glxp.api.req.thrsys.FilterThrInvProductsRequest;
import com.glxp.api.service.auth.CustomerService;
import com.glxp.api.service.thrsys.ThrInvProductsService; import com.glxp.api.service.thrsys.ThrInvProductsService;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.util.Collections; import java.util.Collections;
import java.util.Date;
import java.util.List; import java.util.List;
@Service @Service
@ -17,6 +19,8 @@ public class ThrInvProductsServiceImpl implements ThrInvProductsService {
@Resource @Resource
private ThrInvProductsDao thrInvProductsDao; private ThrInvProductsDao thrInvProductsDao;
@Resource
CustomerService customerServicel;
@Override @Override
public List<ThrInvProductsEntity> filterThrInvProductss(FilterThrInvProductsRequest filterThrInvProductsRequest) { public List<ThrInvProductsEntity> filterThrInvProductss(FilterThrInvProductsRequest filterThrInvProductsRequest) {
@ -38,6 +42,10 @@ public class ThrInvProductsServiceImpl implements ThrInvProductsService {
@Override @Override
public boolean insertThrInvProduct(ThrInvProductsEntity thrInvProductsEntity) { public boolean insertThrInvProduct(ThrInvProductsEntity thrInvProductsEntity) {
thrInvProductsEntity.setUpdateTime(new Date());
thrInvProductsEntity.setCreateTime(new Date());
thrInvProductsEntity.setCreateUser(String.valueOf(customerServicel.getUserId()));
thrInvProductsEntity.setUpdateUser(String.valueOf(customerServicel.getUserId()));
return thrInvProductsDao.insertThrInvProduct(thrInvProductsEntity); return thrInvProductsDao.insertThrInvProduct(thrInvProductsEntity);
} }
@ -48,6 +56,10 @@ public class ThrInvProductsServiceImpl implements ThrInvProductsService {
@Override @Override
public boolean updateThrInvProducts(ThrInvProductsEntity thrInvProductsEntity) { public boolean updateThrInvProducts(ThrInvProductsEntity thrInvProductsEntity) {
thrInvProductsEntity.setUpdateTime(new Date());
thrInvProductsEntity.setCreateTime(new Date());
thrInvProductsEntity.setCreateUser(String.valueOf(customerServicel.getUserId()));
thrInvProductsEntity.setUpdateUser(String.valueOf(customerServicel.getUserId()));
return thrInvProductsDao.updateThrInvProducts(thrInvProductsEntity); return thrInvProductsDao.updateThrInvProducts(thrInvProductsEntity);
} }

@ -29,7 +29,7 @@
INTO thr_corp INTO thr_corp
( (
unitId,name,spell,addr,creditNo, unitId,name,spell,addr,creditNo,
contact,mobile,thirdSysFk,updateTime contact,mobile,thirdSysFk,updateTime,createUser,createTime,updateUser,remark
) )
values values
( (
@ -41,7 +41,11 @@
#{contact}, #{contact},
#{mobile}, #{mobile},
#{thirdSysFk}, #{thirdSysFk},
#{updateTime} #{updateTime},
#{createUser},
#{createTime},
#{updateUser},
#{remark}
) )
</insert> </insert>
@ -49,7 +53,7 @@
replace INTO thr_corp replace INTO thr_corp
( (
unitId,name,spell,addr,creditNo, unitId,name,spell,addr,creditNo,
contact,mobile,thirdSysFk,updateTime contact,mobile,thirdSysFk,updateTime,createUser,createTime,updateUser,remark
) )
values values
@ -63,7 +67,12 @@
#{item.creditNo}, #{item.creditNo},
#{item.contact}, #{item.contact},
#{item.mobile}, #{item.mobile},
#{item.thirdSysFk},#{item.updateTime} #{item.thirdSysFk},
#{item.updateTime},
#{item.createUser},
#{item.createTime},
#{item.updateUser},
#{item.remark}
) )
</foreach> </foreach>
</insert> </insert>
@ -96,6 +105,10 @@
<if test="mobile != null">mobile=#{mobile},</if> <if test="mobile != null">mobile=#{mobile},</if>
<if test="thirdSysFk != null">thirdSysFk=#{thirdSysFk},</if> <if test="thirdSysFk != null">thirdSysFk=#{thirdSysFk},</if>
<if test="updateTime != null">updateTime=#{updateTime},</if> <if test="updateTime != null">updateTime=#{updateTime},</if>
<if test="createUser != null">createUser=#{createUser},</if>
<if test="createTime != null">createTime=#{createTime},</if>
<if test="updateUser != null">updateUser=#{updateUser},</if>
<if test="remark != null">remark=#{remark},</if>
</trim> </trim>
WHERE id = #{id} WHERE id = #{id}
@ -103,7 +116,7 @@
<insert id="importThrCorp" parameterType="com.glxp.api.entity.thrsys.ThrCorpEntity"> <insert id="importThrCorp" parameterType="com.glxp.api.entity.thrsys.ThrCorpEntity">
replace replace
into thr_corp (unitId, spell, addr, creditNo, contact, mobile, thirdSysFk, name, updateTime) into thr_corp (unitId, spell, addr, creditNo, contact, mobile, thirdSysFk, name, updateTime,createUser,createTime,updateUser,remark)
values ( values (
#{unitId}, #{unitId},
#{spell}, #{spell},
@ -113,7 +126,11 @@
#{mobile}, #{mobile},
#{thirdSysFk}, #{thirdSysFk},
#{name}, #{name},
#{updateTime} #{updateTime},
#{item.createUser},
#{item.createTime},
#{item.updateUser},
#{item.remark}
) )
</insert> </insert>

@ -27,12 +27,15 @@
<insert id="insertThrCorpExportLog" keyProperty="id" <insert id="insertThrCorpExportLog" keyProperty="id"
parameterType="com.glxp.api.entity.thrsys.ThrCorpExportLogEntity"> parameterType="com.glxp.api.entity.thrsys.ThrCorpExportLogEntity">
insert INTO thr_corp_export_log insert INTO thr_corp_export_log
(genKey,updateTime,dlCount,status,filePath,remark,`type`) (genKey,updateTime,dlCount,status,filePath,remark,`type`,createUser,createTime,updateUser)
values values
( (
#{genKey}, #{genKey},
#{updateTime}, #{updateTime},
#{dlCount},#{status},#{filePath},#{remark},#{type} #{dlCount},#{status},#{filePath},#{remark},#{type},
#{createUser},
#{createTime},
#{updateUser}
) )
</insert> </insert>
@ -49,6 +52,9 @@
<if test="status != null">status=#{status},</if> <if test="status != null">status=#{status},</if>
<if test="filePath != null">filePath=#{filePath},</if> <if test="filePath != null">filePath=#{filePath},</if>
<if test="remark != null">remark=#{remark},</if> <if test="remark != null">remark=#{remark},</if>
<if test="createUser != null">createUser=#{createUser},</if>
<if test="createTime != null">createTime=#{createTime},</if>
<if test="updateUser != null">updateUser=#{updateUser},</if>
</set> </set>
WHERE genKey = #{genKey} WHERE genKey = #{genKey}
</update> </update>

@ -29,7 +29,7 @@
insert INTO thr_corp_import_detail insert INTO thr_corp_import_detail
( (
unitId,name,spell,addr,creditNo, unitId,name,spell,addr,creditNo,
contact,mobile,thirdSysFk,updateTime ,genKeyFk contact,mobile,thirdSysFk,updateTime ,genKeyFk,createUser,createTime,updateUser,remark
) )
values values
( (
@ -41,8 +41,12 @@
#{contact}, #{contact},
#{mobile}, #{mobile},
#{thirdSysFk}, #{thirdSysFk},
#{updateTime}, #{updateTime},
#{genKeyFk} #{genKeyFk},
#{createUser},
#{createTime},
#{updateUser},
#{remark}
) )
</insert> </insert>
@ -50,7 +54,7 @@
insert INTO thr_corp_import_detail insert INTO thr_corp_import_detail
( (
unitId,name,spell,addr,creditNo, unitId,name,spell,addr,creditNo,
contact,mobile,thirdSysFk ,updateTime ,genKeyFk ) contact,mobile,thirdSysFk ,updateTime ,genKeyFk,createUser,createTime,updateUser,remark )
values values
<foreach collection="corps" item="item" index="index" <foreach collection="corps" item="item" index="index"
separator=","> separator=",">
@ -62,7 +66,11 @@
#{item.creditNo}, #{item.creditNo},
#{item.contact}, #{item.contact},
#{item.mobile}, #{item.mobile},
#{item.thirdSysFk} ,#{item.updateTime},#{item.genKeyFk} ) #{item.thirdSysFk} ,#{item.updateTime},#{item.genKeyFk},
#{item.createUser},
#{item.createTime},
#{item.updateUser},
#{item.remark} )
</foreach> </foreach>
</insert> </insert>
<delete id="deleteById" parameterType="Map"> <delete id="deleteById" parameterType="Map">
@ -85,6 +93,10 @@
<if test="thirdSysFk != null">thirdSysFk=#{thirdSysFk},</if> <if test="thirdSysFk != null">thirdSysFk=#{thirdSysFk},</if>
<if test="updateTime != null">updateTime=#{updateTime},</if> <if test="updateTime != null">updateTime=#{updateTime},</if>
<if test="genKeyFk != null">genKeyFk=#{genKeyFk},</if> <if test="genKeyFk != null">genKeyFk=#{genKeyFk},</if>
<if test="remark != null">remark=#{remark},</if>
<if test="createUser != null">createUser=#{createUser},</if>
<if test="createTime != null">createTime=#{createTime},</if>
<if test="updateUser != null">updateUser=#{updateUser},</if>
</trim> </trim>
WHERE id = #{id} WHERE id = #{id}
</update> </update>

@ -27,13 +27,17 @@
<insert id="insertImportLog" keyProperty="id" parameterType="com.glxp.api.entity.thrsys.ThrCorpImportLogEntity"> <insert id="insertImportLog" keyProperty="id" parameterType="com.glxp.api.entity.thrsys.ThrCorpImportLogEntity">
insert INTO thr_corp_import_log insert INTO thr_corp_import_log
(genKey,fromType,updateTime,thirdSysFk,status) (genKey,fromType,updateTime,thirdSysFk,status,createUser,createTime,updateUser,remark)
values values
( (
#{genKey}, #{genKey},
#{fromType}, #{fromType},
#{updateTime}, #{updateTime},
#{thirdSysFk},#{status} #{thirdSysFk},#{status},
#{createUser},
#{createTime},
#{updateUser},
#{remark},
) )
</insert> </insert>
@ -51,6 +55,9 @@
<if test="thirdSysFk != null">thirdSysFk=#{thirdSysFk},</if> <if test="thirdSysFk != null">thirdSysFk=#{thirdSysFk},</if>
<if test="status != null">status=#{status},</if> <if test="status != null">status=#{status},</if>
<if test="remark != null">remark=#{remark},</if> <if test="remark != null">remark=#{remark},</if>
<if test="createUser != null">createUser=#{createUser},</if>
<if test="createTime != null">createTime=#{createTime},</if>
<if test="updateUser != null">updateUser=#{updateUser},</if>
</set> </set>
WHERE genKey = #{genKey} WHERE genKey = #{genKey}
</update> </update>

@ -45,7 +45,7 @@
inventoryCode,inventoryName,count,spec, inventoryCode,inventoryName,count,spec,
warehouseName,warehouseCode,registerCertNo,manufacturingDate, warehouseName,warehouseCode,registerCertNo,manufacturingDate,
expirationDate,thirdSysFk,batchNo,spaceCode,spaceName,updateTime,manufactory, expirationDate,thirdSysFk,batchNo,spaceCode,spaceName,updateTime,manufactory,
productDate, expireDate, productName, productId, standard, registerNo, supId, supName productDate, expireDate, productName, productId, standard, registerNo, supId, supName,createUser,createTime,updateUser,remark
) )
values values
( (
@ -54,7 +54,7 @@
#{expirationDate}, #{expirationDate},
#{thirdSysFk},#{batchNo},#{spaceCode},#{spaceName},#{updateTime},#{manufactory}, #{thirdSysFk},#{batchNo},#{spaceCode},#{spaceName},#{updateTime},#{manufactory},
#{productDate}, #{expireDate}, #{productName}, #{productId}, #{standard}, #{productDate}, #{expireDate}, #{productName}, #{productId}, #{standard},
#{registerNo}, #{supId}, #{supName} #{registerNo}, #{supId}, #{supName} #{createUser},#{createTime}, #{updateUser}, #{remark}
) )
</insert> </insert>
@ -64,7 +64,7 @@
inventoryCode,inventoryName,count,spec, inventoryCode,inventoryName,count,spec,
warehouseName,warehouseCode,registerCertNo,manufacturingDate, warehouseName,warehouseCode,registerCertNo,manufacturingDate,
expirationDate,thirdSysFk,batchNo,spaceCode,spaceName,updateTime,manufactory, expirationDate,thirdSysFk,batchNo,spaceCode,spaceName,updateTime,manufactory,
productDate, expireDate, productName, productId, standard, registerNo, supId, supName productDate, expireDate, productName, productId, standard, registerNo, supId, supName,createUser,createTime,updateUser,remark
) )
values values
@ -76,7 +76,7 @@
#{item.manufacturingDate}, #{item.expirationDate}, #{item.manufacturingDate}, #{item.expirationDate},
#{item.thirdSysFk},#{item.batchNo},#{item.spaceCode},#{item.spaceName},#{item.updateTime},#{item.manufactory}, #{item.thirdSysFk},#{item.batchNo},#{item.spaceCode},#{item.spaceName},#{item.updateTime},#{item.manufactory},
#{item.productDate},#{item.expireDate}, #{item.productName}, #{item.productId}, #{item.standard}, #{item.registerNo}, #{item.productDate},#{item.expireDate}, #{item.productName}, #{item.productId}, #{item.standard}, #{item.registerNo},
#{item.supId}, #{item.supName} #{item.supId}, #{item.supName},#{item.createUser},#{item.createTime}, #{item.updateUser},#{item.remark}
) )
</foreach> </foreach>
</insert> </insert>
@ -116,6 +116,10 @@
<if test="registerNo != null">registerNo=#{registerNo},</if> <if test="registerNo != null">registerNo=#{registerNo},</if>
<if test="supId != null">supId=#{supId},</if> <if test="supId != null">supId=#{supId},</if>
<if test="supName != null">supName=#{supName},</if> <if test="supName != null">supName=#{supName},</if>
<if test="remark != null">remark=#{remark},</if>
<if test="createUser != null">createUser=#{createUser},</if>
<if test="createTime != null">createTime=#{createTime},</if>
<if test="updateUser != null">updateUser=#{updateUser},</if>
</trim> </trim>
WHERE id = #{id} WHERE id = #{id}
</update> </update>

@ -30,16 +30,14 @@
( (
inventoryCode,inventoryName,count,spec, inventoryCode,inventoryName,count,spec,
warehouseName,warehouseCode,registerCertNo,manufacturingDate, warehouseName,warehouseCode,registerCertNo,manufacturingDate,
expirationDate,thirdSysFk,batchNo,spaceCode,spaceName,updateTime ,genKeyFk expirationDate,thirdSysFk,batchNo,spaceCode,spaceName,updateTime ,genKeyFk,createUser,createTime,updateUser,remark
) )
values values
( (
#{inventoryCode}, #{inventoryName}, #{count}, #{spec}, #{inventoryCode}, #{inventoryName}, #{count}, #{spec},
#{warehouseName}, #{warehouseCode}, #{registerCertNo}, #{manufacturingDate}, #{warehouseName}, #{warehouseCode}, #{registerCertNo}, #{manufacturingDate},#{expirationDate},
#{expirationDate},
#{thirdSysFk},#{batchNo},#{spaceCode},#{spaceName}, #{thirdSysFk},#{batchNo},#{spaceCode},#{spaceName},
#{updateTime}, #{updateTime},#{genKeyFk},#{createUser},#{createTime}, #{updateUser},#{remark},
#{genKeyFk}
) )
</insert> </insert>
@ -48,7 +46,7 @@
( (
inventoryCode,inventoryName,count,spec, inventoryCode,inventoryName,count,spec,
warehouseName,warehouseCode,registerCertNo,manufacturingDate, warehouseName,warehouseCode,registerCertNo,manufacturingDate,
expirationDate,thirdSysFk,batchNo,spaceCode,spaceName,updateTime ,genKeyFk ) expirationDate,thirdSysFk,batchNo,spaceCode,spaceName,updateTime ,genKeyFk ,createUser,createTime,updateUser,remark)
values values
<foreach collection="invProducts" item="item" index="index" <foreach collection="invProducts" item="item" index="index"
separator=","> separator=",">
@ -57,7 +55,7 @@
#{item.warehouseName}, #{item.warehouseCode}, #{item.registerCertNo}, #{item.warehouseName}, #{item.warehouseCode}, #{item.registerCertNo},
#{item.manufacturingDate}, #{item.expirationDate}, #{item.manufacturingDate}, #{item.expirationDate},
#{item.thirdSysFk},#{item.batchNo},#{item.spaceCode},#{item.spaceName} #{item.thirdSysFk},#{item.batchNo},#{item.spaceCode},#{item.spaceName}
,#{item.updateTime},#{item.genKeyFk} ) ,#{item.updateTime},#{item.genKeyFk}, #{item.createUser},#{item.createTime} #{item.updateUser},#{item.remark} )
</foreach> </foreach>
</insert> </insert>
<delete id="deleteById" parameterType="Map"> <delete id="deleteById" parameterType="Map">
@ -85,6 +83,10 @@
<if test="thirdSysFk != null">thirdSysFk=#{thirdSysFk},</if> <if test="thirdSysFk != null">thirdSysFk=#{thirdSysFk},</if>
<if test="updateTime != null">updateTime=#{updateTime},</if> <if test="updateTime != null">updateTime=#{updateTime},</if>
<if test="genKeyFk != null">genKeyFk=#{genKeyFk},</if> <if test="genKeyFk != null">genKeyFk=#{genKeyFk},</if>
<if test="remark != null">remark=#{remark},</if>
<if test="createUser != null">createUser=#{createUser},</if>
<if test="createTime != null">createTime=#{createTime},</if>
<if test="updateUser != null">updateUser=#{updateUser},</if>
</trim> </trim>
WHERE id = #{id} WHERE id = #{id}
</update> </update>

@ -24,12 +24,14 @@
<insert id="insertThrInvProductsExportLog" keyProperty="id" <insert id="insertThrInvProductsExportLog" keyProperty="id"
parameterType="com.glxp.api.entity.thrsys.ThrInvProductsExportLogEntity"> parameterType="com.glxp.api.entity.thrsys.ThrInvProductsExportLogEntity">
insert INTO thr_inv_products_export_log insert INTO thr_inv_products_export_log
(genKey,updateTime,dlCount,status,filePath,remark,`type`) (genKey,updateTime,dlCount,status,filePath,remark,`type`,createUser,createTime,updateUser)
values values
( (
#{genKey}, #{genKey},
#{updateTime}, #{updateTime},
#{dlCount},#{status},#{filePath},#{remark},#{type} #{dlCount},#{status},#{filePath},#{remark},#{type},#{createUser},
#{createTime},
#{updateUser}
) )
</insert> </insert>
@ -46,6 +48,9 @@
<if test="status != null">status=#{status},</if> <if test="status != null">status=#{status},</if>
<if test="filePath != null">filePath=#{filePath},</if> <if test="filePath != null">filePath=#{filePath},</if>
<if test="remark != null">remark=#{remark},</if> <if test="remark != null">remark=#{remark},</if>
<if test="createUser != null">createUser=#{createUser},</if>
<if test="createTime != null">createTime=#{createTime},</if>
<if test="updateUser != null">updateUser=#{updateUser},</if>
</set> </set>
WHERE genKey = #{genKey} WHERE genKey = #{genKey}
</update> </update>

@ -26,13 +26,17 @@
<insert id="insertImportLog" keyProperty="id" parameterType="com.glxp.api.entity.thrsys.ThrInvProductsImportLogEntity"> <insert id="insertImportLog" keyProperty="id" parameterType="com.glxp.api.entity.thrsys.ThrInvProductsImportLogEntity">
insert INTO thr_inv_products_import_log insert INTO thr_inv_products_import_log
(genKey,fromType,updateTime,thirdSysFk,status) (genKey,fromType,updateTime,thirdSysFk,status,createUser,createTime,updateUser,remark)
values values
( (
#{genKey}, #{genKey},
#{fromType}, #{fromType},
#{updateTime}, #{updateTime},
#{thirdSysFk},#{status} #{thirdSysFk},#{status},
#{createUser},
#{createTime},
#{updateUser},
#{remark}
) )
</insert> </insert>
@ -50,6 +54,9 @@
<if test="thirdSysFk != null">thirdSysFk=#{thirdSysFk},</if> <if test="thirdSysFk != null">thirdSysFk=#{thirdSysFk},</if>
<if test="status != null">status=#{status},</if> <if test="status != null">status=#{status},</if>
<if test="remark != null">remark=#{remark},</if> <if test="remark != null">remark=#{remark},</if>
<if test="createUser != null">createUser=#{createUser},</if>
<if test="createTime != null">createTime=#{createTime},</if>
<if test="updateUser != null">updateUser=#{updateUser},</if>
</set> </set>
WHERE genKey = #{genKey} WHERE genKey = #{genKey}
</update> </update>

@ -6,7 +6,7 @@
<select id="filterThrOrder" parameterType="com.glxp.api.req.thrsys.FilterThrOrderRequest" <select id="filterThrOrder" parameterType="com.glxp.api.req.thrsys.FilterThrOrderRequest"
resultType="com.glxp.api.entity.thrsys.ThrOrderEntity"> resultType="com.glxp.api.entity.thrsys.ThrOrderEntity">
SELECT thr_order.*,basic_bustype_origin.name billTypeName FROM thr_order SELECT thr_order.*,basic_bustype_origin.name billTypeName FROM thr_order
left join basic_bustype_origin on thr_order.billType = basic_bustype_origin.action left join thr_bustype_origin on thr_order.billType = thr_bustype_origin.action
<where> <where>
<if test="billNo != '' and billNo != null"> <if test="billNo != '' and billNo != null">
AND billNo = #{billNo} AND billNo = #{billNo}

@ -13,7 +13,7 @@
<if test="status != '' and status != null"> <if test="status != '' and status != null">
AND status = #{status} AND status = #{status}
</if> </if>
<if test="type != '' and type != null"> <if test=" type != null">
AND `type` = #{type} AND `type` = #{type}
</if> </if>
</where> </where>

Loading…
Cancel
Save