修改bug

zhairh
郑明梁 2 years ago
parent 513faef851
commit 2260eca219

@ -298,7 +298,10 @@ public class UdiRelevanceController {
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL, bindingResult.getFieldError().getDefaultMessage()); return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL, bindingResult.getFieldError().getDefaultMessage());
} }
//判断父id不为空就吧值给到id里面防止id变成详情id
if(udiRelevanceResponse.getPid()!=null){
udiRelevanceResponse.setId(udiRelevanceResponse.getPid());
}
UdiRelevanceEntity udiRelevanceEntity = new UdiRelevanceEntity(); UdiRelevanceEntity udiRelevanceEntity = new UdiRelevanceEntity();
BeanUtils.copyProperties(udiRelevanceResponse, udiRelevanceEntity); BeanUtils.copyProperties(udiRelevanceResponse, udiRelevanceEntity);
udiRelevanceEntity.setId(udiRelevanceResponse.getId() + ""); udiRelevanceEntity.setId(udiRelevanceResponse.getId() + "");
@ -319,6 +322,7 @@ public class UdiRelevanceController {
udiInfoEntity.setCpms(udiRelevanceResponse.getCpms()); udiInfoEntity.setCpms(udiRelevanceResponse.getCpms());
udiInfoEntity.setPrice(udiRelevanceResponse.getPrice()); udiInfoEntity.setPrice(udiRelevanceResponse.getPrice());
udiInfoEntity.setSpmc(udiRelevanceResponse.getSpmc()); udiInfoEntity.setSpmc(udiRelevanceResponse.getSpmc());
udiInfoEntity.setZxxsbzbhsydysl(udiRelevanceResponse.getZxxsbzbhsydysl());
udiInfoEntity.setAllowNoBatch(udiRelevanceResponse.isAllowNoBatch()); udiInfoEntity.setAllowNoBatch(udiRelevanceResponse.isAllowNoBatch());
udiInfoEntity.setAllowNoExpire(udiRelevanceResponse.isAllowNoExpire()); udiInfoEntity.setAllowNoExpire(udiRelevanceResponse.isAllowNoExpire());
udiInfoEntity.setAllowNoProduct(udiRelevanceResponse.isAllowNoProduct()); udiInfoEntity.setAllowNoProduct(udiRelevanceResponse.isAllowNoProduct());

@ -61,6 +61,8 @@ public class SupCompanyController {
BasicUnitMaintainService basicUnitMaintainService; BasicUnitMaintainService basicUnitMaintainService;
@Resource @Resource
SupCertSetService supCertSetService; SupCertSetService supCertSetService;
@Resource
SupCompanyService supCompanyService;
@AuthRuleAnnotation("") @AuthRuleAnnotation("")
@GetMapping("/api/pur/getSupComapnys") @GetMapping("/api/pur/getSupComapnys")
@ -79,23 +81,46 @@ public class SupCompanyController {
public BaseResponse insertCompany(@RequestBody SupCompanyEntity companyEntity) { public BaseResponse insertCompany(@RequestBody SupCompanyEntity companyEntity) {
//查询该用户对应的资质证书 //判断是不是存在草稿
if(companyEntity.getAuditStatus()==6){ if(companyEntity.getAuditStatus()==6){
FilterSupCertRequest filterSupCertRequest = new FilterSupCertRequest(); List<SupCertEntity> supCertEntityList = supCertService.findAll(companyEntity.getCustomerId()); for(SupCertEntity obj:supCertEntityList){
filterSupCertRequest.setCustomerId(companyEntity.getCustomerId()); if(obj.getAuditStatus()==0){
filterSupCertRequest.setType(ConstantStatus.CERT_COMPANY); return ResultVOUtils.error(999,"证书中存在草稿不允许提交!");
List<SupCertEntity> supCertEntityList = supCertService.filterCompanyCert(filterSupCertRequest);
if(supCertEntityList.size()>0){
for (SupCertEntity obj:supCertEntityList){
if (StrUtil.isBlank(obj.getFilePath())){
return ResultVOUtils.error(999,obj.getName()+"未上传资质证书!");
}
} }
} }
}
//提交审核
FilterCertSetsRequest filterCertSetsRequest = new FilterCertSetsRequest();
filterCertSetsRequest.setType(ConstantStatus.CERT_COMPANY);
filterCertSetsRequest.setNeed(1);
List<SupCertSetEntity> supCertSetEntities = supCertSetService.filterCertSets(filterCertSetsRequest);
//验证
ListIterator<SupCertSetEntity> iterable = supCertSetEntities.listIterator();
while (iterable.hasNext()) {
SupCertSetEntity supCertSetEntity = iterable.next();
if (supCertSetEntity.isNeed()) {
for (SupCertEntity supCertEntity : supCertEntityList) {
if (supCertEntity.getName().equals(supCertSetEntity.getName())) {
if (StrUtil.isNotEmpty(supCertEntity.getFilePath())) {
iterable.remove();
break;
}
}
}
}
}
String errMsg = "";
if (supCertSetEntities.size() > 0) {
for (SupCertSetEntity supCertSetEntity : supCertSetEntities) {
errMsg = errMsg + "," + supCertSetEntity.getName();
}
return ResultVOUtils.error(500, errMsg.substring(1) + "等证书未上传,无法提交审核!");
}
}
String customerId = CustomUtil.getId(); //重新生成customerId String customerId = CustomUtil.getId(); //重新生成customerId
CustomerContactEntity customerContactEntity = new CustomerContactEntity(); CustomerContactEntity customerContactEntity = new CustomerContactEntity();
@ -282,7 +307,7 @@ public class SupCompanyController {
@AuthRuleAnnotation("") @AuthRuleAnnotation("")
@PostMapping("api/pur/supCompany/delete") @PostMapping("api/pur/supCompany/delete")
public BaseResponse deleteSupCompany(@RequestBody DeleteRequest deleteRequest) { public BaseResponse deleteSupCompany(@RequestBody DeleteRequest deleteRequest) {
boolean b = customerContactService.deleteById(Long.parseLong(deleteRequest.getId())); boolean b = supCompanyService.deleteCompany(deleteRequest.getId());
if (b) if (b)
return ResultVOUtils.success("删除成功"); return ResultVOUtils.success("删除成功");
else { else {

@ -52,7 +52,7 @@ public class SupContactController {
@AuthRuleAnnotation("") @AuthRuleAnnotation("")
@GetMapping("salewarehouse/customerContact/delete") @GetMapping("salewarehouse/customerContact/delete")
public BaseResponse deleteContact(DeleteRequest deleteRequest) { public BaseResponse deleteContact(DeleteRequest deleteRequest) {
boolean b = customerContactService.deleteById(Long.parseLong(deleteRequest.getId())); boolean b = customerContactService.deleteById(deleteRequest.getId());
if (b) if (b)
return ResultVOUtils.success("删除成功"); return ResultVOUtils.success("删除成功");
else { else {

@ -16,7 +16,7 @@ public interface CustomerContacDao {
boolean updateCustomerContact(CustomerContactEntity customerContactEntity); boolean updateCustomerContact(CustomerContactEntity customerContactEntity);
boolean deleteById(Long customerId); boolean deleteById(String customerId);
CustomerContactEntity selectById(Long customerId); CustomerContactEntity selectById(Long customerId);

@ -23,6 +23,6 @@ public interface SupCompanyDao {
boolean insertCompany(SupCompanyEntity companyEntity); boolean insertCompany(SupCompanyEntity companyEntity);
boolean deleteCompany(Long customerId); boolean deleteCompany(String customerId);
} }

@ -52,7 +52,7 @@ public class StockOrderEntity {
private String dept; private String dept;
private String deptName; private String deptName;
private Boolean noInvOut;
private String reviewUserName; private String reviewUserName;
} }

@ -30,6 +30,6 @@ public class StockOrderPostRequest {
private String deptCode; private String deptCode;
private BigDecimal price; private BigDecimal price;
private String unitIdFk; private String unitIdFk;
private Boolean noInvOut;
private Integer editStatus; private Integer editStatus;
} }

@ -89,6 +89,7 @@ public class UdiRelevanceResponse {
private Integer rlId; private Integer rlId;
private Boolean useMuti; //是否多次使用 private Boolean useMuti; //是否多次使用
private Integer useNum; //最小包装单元可使用次数 private Integer useNum; //最小包装单元可使用次数
private Integer pid; //用来存父id
public int getBhzxxsbzsl() { public int getBhzxxsbzsl() {

@ -15,7 +15,7 @@ public interface CustomerContactService {
boolean updateCustomerContact(CustomerContactEntity customerContactEntity); boolean updateCustomerContact(CustomerContactEntity customerContactEntity);
boolean deleteById(Long id); boolean deleteById(String id);
boolean deleteContact(DeleteRequest deleteRequest); boolean deleteContact(DeleteRequest deleteRequest);

@ -24,5 +24,5 @@ public interface SupCompanyService {
boolean insertCompany(SupCompanyEntity companyEntity); boolean insertCompany(SupCompanyEntity companyEntity);
boolean deleteCompany(Long customerId); boolean deleteCompany(String customerId);
} }

@ -40,7 +40,7 @@ public class CustomerContactServiceImpl implements CustomerContactService {
} }
@Override @Override
public boolean deleteById(Long id) { public boolean deleteById(String id) {
return customerContacDao.deleteById(id); return customerContacDao.deleteById(id);
} }

@ -80,7 +80,7 @@ public class SupCompanyServiceImpl implements SupCompanyService {
@Override @Override
public boolean deleteCompany(Long customerId) { public boolean deleteCompany(String customerId) {
return supCompanyDao.deleteCompany(customerId); return supCompanyDao.deleteCompany(customerId);
} }
} }

@ -30,7 +30,7 @@
thirdSysFk, status, statusInfo, `type`, sourceType, thirdSysFk, status, statusInfo, `type`, sourceType,
printStatus, unitIdFk, customerId, thirdOrderFk, orderIdFk, printStatus, unitIdFk, customerId, thirdOrderFk, orderIdFk,
totalPrice, locStorageCode, supplementNo, createUser, reviewUser, entrustEnd, auditTime, totalPrice, locStorageCode, supplementNo, createUser, reviewUser, entrustEnd, auditTime,
updateTime, invWarehouseCode, fromSubInvCode, dept) updateTime, invWarehouseCode, fromSubInvCode, dept, noInvOut)
values (#{id}, values (#{id},
#{billNo}, #{billNo},
#{billdate}, #{billdate},
@ -45,7 +45,7 @@
#{sourceType}, #{sourceType},
#{printStatus}, #{unitIdFk}, #{customerId}, #{thirdOrderFk}, #{orderIdFk}, #{totalPrice}, #{printStatus}, #{unitIdFk}, #{customerId}, #{thirdOrderFk}, #{orderIdFk}, #{totalPrice},
#{locStorageCode}, #{supplementNo}, #{createUser}, #{reviewUser}, #{entrustEnd}, #{auditTime}, #{locStorageCode}, #{supplementNo}, #{createUser}, #{reviewUser}, #{entrustEnd}, #{auditTime},
#{updateTime}, #{invWarehouseCode}, #{fromSubInvCode}, #{dept}) #{updateTime}, #{invWarehouseCode}, #{fromSubInvCode}, #{dept} ,#{noInvOut})
</insert> </insert>
<update id="updateById" parameterType="com.glxp.api.admin.entity.business.StockOrderEntity"> <update id="updateById" parameterType="com.glxp.api.admin.entity.business.StockOrderEntity">
UPDATE stock_order UPDATE stock_order
@ -77,6 +77,7 @@
<if test="invWarehouseCode != null">invWarehouseCode=#{invWarehouseCode},</if> <if test="invWarehouseCode != null">invWarehouseCode=#{invWarehouseCode},</if>
<if test="fromSubInvCode != null">fromSubInvCode=#{fromSubInvCode},</if> <if test="fromSubInvCode != null">fromSubInvCode=#{fromSubInvCode},</if>
<if test="dept != null">dept=#{dept},</if> <if test="dept != null">dept=#{dept},</if>
<if test="noInvOut != null">noInvOut=#{noInvOut},</if>
</trim> </trim>
WHERE id = #{id} WHERE id = #{id}
</update> </update>

@ -38,7 +38,7 @@
WHERE customerId=#{customerId} WHERE customerId=#{customerId}
</update> </update>
<delete id="deleteById" parameterType="java.lang.Long"> <delete id="deleteById" parameterType="java.lang.String">
delete delete
from customer_contact from customer_contact
where customerId = #{customerId} where customerId = #{customerId}

@ -40,6 +40,7 @@
<if test="supId != '' and supId != null"> <if test="supId != '' and supId != null">
AND supId = #{supId} AND supId = #{supId}
</if> </if>
GROUP BY productId
</where> </where>
</select> </select>

@ -49,7 +49,7 @@
</if> </if>
</where> </where>
</select> </select>
<delete id="deleteCompany" parameterType="java.lang.Long"> <delete id="deleteCompany" parameterType="java.lang.String">
delete delete
from sup_company from sup_company
where customerId = #{customerId} where customerId = #{customerId}

@ -2,11 +2,13 @@
CALL Pro_Temp_ColumnWork ('basic_export_status','receiveStatus','varchar(255) ', 1); CALL Pro_Temp_ColumnWork ('basic_export_status','receiveStatus','varchar(255) ', 1);
CALL Pro_Temp_ColumnWork ('io_order','wzUploadStatus','varchar(255) ', 1); CALL Pro_Temp_ColumnWork ('io_order','wzUploadStatus','varchar(255) ', 1);
CALL Pro_Temp_ColumnWork ('io_order','wzUploadResult','varchar(255) ', 1); CALL Pro_Temp_ColumnWork ('io_order','wzUploadResult','varchar(255) ', 1);
CALL Pro_Temp_ColumnWork ('stock_order','noInvOut','tinyint ', 1);
CALL Pro_Temp_ColumnWork ('sup_cert','filePath','varchar(255) ', 2); CALL Pro_Temp_ColumnWork ('sup_cert','filePath','varchar(255) ', 2);
-- 创建表时必须 create table if not exists 表名 -- 创建表时必须 create table if not exists 表名
CREATE TABLE if not exists `device_collect_order` ( CREATE TABLE if not exists `device_collect_order` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'id', `id` int NOT NULL AUTO_INCREMENT COMMENT 'id',

Loading…
Cancel
Save