必填字段插入

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

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

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

@ -6,17 +6,21 @@ import com.github.pagehelper.PageHelper;
import com.glxp.api.dao.thrsys.ThrCorpExportLogDao;
import com.glxp.api.entity.thrsys.ThrCorpExportLogEntity;
import com.glxp.api.req.thrsys.FilterThrCorpExportLogRequest;
import com.glxp.api.service.auth.CustomerService;
import com.glxp.api.service.thrsys.ThrCorpExportLogService;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.Collections;
import java.util.Date;
import java.util.List;
@Service
public class ThrCorpExportLogServiceImpl implements ThrCorpExportLogService {
@Resource
ThrCorpExportLogDao thrCorpExportLogDao;
@Resource
CustomerService customerService;
@Override
public ThrCorpExportLogEntity selectByGenKey(String genKey) {
@ -49,6 +53,10 @@ public class ThrCorpExportLogServiceImpl implements ThrCorpExportLogService {
@Override
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);
}

@ -4,11 +4,13 @@ import com.github.pagehelper.PageHelper;
import com.glxp.api.dao.thrsys.ThrCorpImportDetailDao;
import com.glxp.api.entity.thrsys.ThrCorpImportDetailEntity;
import com.glxp.api.req.thrsys.FilterThrCorpImportLogRequest;
import com.glxp.api.service.auth.CustomerService;
import com.glxp.api.service.thrsys.ThrCorpImportDetailService;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.Collections;
import java.util.Date;
import java.util.List;
@Service
@ -16,6 +18,8 @@ public class ThrCorpImportDetailServiceImpl implements ThrCorpImportDetailServic
@Resource
ThrCorpImportDetailDao thrCorpImportDetailDao;
@Resource
CustomerService customerServicel;
@Override
public List<ThrCorpImportDetailEntity> filterCorpDetailImport(FilterThrCorpImportLogRequest filterThrCorpImportLogRequest) {
@ -32,11 +36,19 @@ public class ThrCorpImportDetailServiceImpl implements ThrCorpImportDetailServic
@Override
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);
}
@Override
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);
}

@ -4,17 +4,21 @@ import com.github.pagehelper.PageHelper;
import com.glxp.api.dao.thrsys.ThrCorpImportLogDao;
import com.glxp.api.entity.thrsys.ThrCorpImportLogEntity;
import com.glxp.api.req.thrsys.FilterThrCorpImportLogRequest;
import com.glxp.api.service.auth.CustomerService;
import com.glxp.api.service.thrsys.ThrCorpImportLogService;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.Collections;
import java.util.Date;
import java.util.List;
@Service
public class ThrCorpImportLogServiceImpl implements ThrCorpImportLogService {
@Resource
ThrCorpImportLogDao thrCorpImportLogDao;
@Resource
CustomerService customerServicel;
@Override
public ThrCorpImportLogEntity selectByGenKey(String genKey) {
@ -43,11 +47,19 @@ public class ThrCorpImportLogServiceImpl implements ThrCorpImportLogService {
@Override
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);
}
@Override
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);
}

@ -4,11 +4,13 @@ import com.github.pagehelper.PageHelper;
import com.glxp.api.dao.thrsys.ThrInvProductsDetailDao;
import com.glxp.api.entity.thrsys.ThrInvProductsImportDetailEntity;
import com.glxp.api.req.thrsys.FilterThrCorpImportLogRequest;
import com.glxp.api.service.auth.CustomerService;
import com.glxp.api.service.thrsys.ThrInvProductsDetailService;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.Collections;
import java.util.Date;
import java.util.List;
@Service
@ -16,6 +18,8 @@ public class ThrInvProductsDetailServiceImpl implements ThrInvProductsDetailServ
@Resource
ThrInvProductsDetailDao thrInvProductsDetailDao;
@Resource
CustomerService customerServicel;
@Override
public List<ThrInvProductsImportDetailEntity> filterInvProductsDetailImport(FilterThrCorpImportLogRequest filterThrCorpImportLogRequest) {
@ -32,11 +36,19 @@ public class ThrInvProductsDetailServiceImpl implements ThrInvProductsDetailServ
@Override
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);
}
@Override
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);
}

@ -4,11 +4,13 @@ import com.github.pagehelper.PageHelper;
import com.glxp.api.dao.thrsys.ThrInvProductsExportLogDao;
import com.glxp.api.entity.thrsys.ThrInvProductsExportLogEntity;
import com.glxp.api.req.thrsys.FilterThrCorpExportLogRequest;
import com.glxp.api.service.auth.CustomerService;
import com.glxp.api.service.thrsys.ThrInvProductsExportLogService;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.Collections;
import java.util.Date;
import java.util.List;
@Service
@ -16,6 +18,8 @@ public class ThrInvProductsExportLogServiceImpl implements ThrInvProductsExportL
@Resource
ThrInvProductsExportLogDao thrInvProductsExportLogDao;
@Resource
CustomerService customerServicel;
@Override
public ThrInvProductsExportLogEntity selectByGenKey(String genKey) {
@ -43,11 +47,19 @@ public class ThrInvProductsExportLogServiceImpl implements ThrInvProductsExportL
@Override
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);
}
@Override
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);
}

@ -4,11 +4,13 @@ import com.github.pagehelper.PageHelper;
import com.glxp.api.dao.thrsys.ThrInvProductsImportLogDao;
import com.glxp.api.entity.thrsys.ThrInvProductsImportLogEntity;
import com.glxp.api.req.thrsys.FilterThrCorpImportLogRequest;
import com.glxp.api.service.auth.CustomerService;
import com.glxp.api.service.thrsys.ThrInvProductsImportLogService;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.Collections;
import java.util.Date;
import java.util.List;
@Service
@ -17,6 +19,8 @@ public class ThrInvProductsImportLogServiceImpl implements ThrInvProductsImportL
@Resource
ThrInvProductsImportLogDao thrInvProductsImportLogDao;
@Resource
CustomerService customerServicel;
@Override
public List<ThrInvProductsImportLogEntity> filterThrInvProductsImportLog(FilterThrCorpImportLogRequest filterThrCorpImportLogRequest) {
@ -33,11 +37,19 @@ public class ThrInvProductsImportLogServiceImpl implements ThrInvProductsImportL
@Override
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);
}
@Override
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);
}

@ -5,11 +5,13 @@ import com.github.pagehelper.PageHelper;
import com.glxp.api.dao.thrsys.ThrInvProductsDao;
import com.glxp.api.entity.thrsys.ThrInvProductsEntity;
import com.glxp.api.req.thrsys.FilterThrInvProductsRequest;
import com.glxp.api.service.auth.CustomerService;
import com.glxp.api.service.thrsys.ThrInvProductsService;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.Collections;
import java.util.Date;
import java.util.List;
@Service
@ -17,6 +19,8 @@ public class ThrInvProductsServiceImpl implements ThrInvProductsService {
@Resource
private ThrInvProductsDao thrInvProductsDao;
@Resource
CustomerService customerServicel;
@Override
public List<ThrInvProductsEntity> filterThrInvProductss(FilterThrInvProductsRequest filterThrInvProductsRequest) {
@ -38,6 +42,10 @@ public class ThrInvProductsServiceImpl implements ThrInvProductsService {
@Override
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);
}
@ -48,6 +56,10 @@ public class ThrInvProductsServiceImpl implements ThrInvProductsService {
@Override
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);
}

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

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

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

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

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

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

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

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

@ -6,7 +6,7 @@
<select id="filterThrOrder" parameterType="com.glxp.api.req.thrsys.FilterThrOrderRequest"
resultType="com.glxp.api.entity.thrsys.ThrOrderEntity">
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>
<if test="billNo != '' and billNo != null">
AND billNo = #{billNo}

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

Loading…
Cancel
Save