|
|
|
@ -63,8 +63,6 @@ public class PurApplyController {
|
|
|
|
|
@Resource
|
|
|
|
|
PurPlanDetailService purPlanDetailService;
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
UdiProductService udiProductService;
|
|
|
|
|
@Resource
|
|
|
|
|
IBasicBusTypeChangeService basicBusTypeChangeService;
|
|
|
|
|
@Resource
|
|
|
|
@ -79,6 +77,9 @@ public class PurApplyController {
|
|
|
|
|
IoOrderService ioOrderService;
|
|
|
|
|
@Resource
|
|
|
|
|
IoOrderDetailBizService ioOrderDetailBizService;
|
|
|
|
|
@Resource
|
|
|
|
|
IoPurChangeService purChangeService;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 新增申购单
|
|
|
|
|
*/
|
|
|
|
@ -93,7 +94,7 @@ public class PurApplyController {
|
|
|
|
|
purApplyEntity.setCreateTime(new Date());
|
|
|
|
|
purApplyEntity.setUpdateTime(new Date());
|
|
|
|
|
purApplyEntity.setStatus(postPurApplyRequest.getEditStatus()); //草稿状态
|
|
|
|
|
if(postPurApplyRequest.getType()!=null){
|
|
|
|
|
if (postPurApplyRequest.getType() != null) {
|
|
|
|
|
String billNo = gennerOrderUtils.createStOrderNo(new OrderNoTypeBean(Constant.SG_ORDER, "yyyyMMdd"));
|
|
|
|
|
purApplyEntity.setBillNo(billNo);
|
|
|
|
|
}
|
|
|
|
@ -165,8 +166,9 @@ public class PurApplyController {
|
|
|
|
|
purApplyEntity.setAuditUser(userId + "");
|
|
|
|
|
purApplyService.update(purApplyEntity);
|
|
|
|
|
|
|
|
|
|
if(purApplyRequest.getStatus()==3){
|
|
|
|
|
generateDocument(purApplyEntity);
|
|
|
|
|
if (purApplyRequest.getStatus() == 3) {
|
|
|
|
|
// generateDocument(purApplyEntity);
|
|
|
|
|
purChangeService.purApplyChange(purApplyEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -208,164 +210,163 @@ public class PurApplyController {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//根据单据生成新单据
|
|
|
|
|
public Boolean generateDocument(PurApplyEntity purApplyEntity){
|
|
|
|
|
BasicBusTypeChangeEntity basicBusTypeChangeEntity=new BasicBusTypeChangeEntity();
|
|
|
|
|
//查询申购详情
|
|
|
|
|
List<PurApplyDetailEntity> purApplyDetailEntityList=purApplyDetailService.findByOrderId(purApplyEntity.getId()+"");
|
|
|
|
|
//---------------------------------判断申购为已审核就生成计划单-------------------------------------------//
|
|
|
|
|
PurPlanEntity purPlanEntity=new PurPlanEntity();
|
|
|
|
|
List<PurPlanDetailEntity> purPlanDetailEntityList=new ArrayList<>();
|
|
|
|
|
if(purApplyEntity.getStatus()==3){
|
|
|
|
|
basicBusTypeChangeEntity=basicBusTypeChangeService.selectByOriginAction("CPSG");
|
|
|
|
|
if(basicBusTypeChangeEntity!=null && StrUtil.isNotEmpty(basicBusTypeChangeEntity.getTargetBusAction()) && basicBusTypeChangeEntity.isEnable()==true){
|
|
|
|
|
purPlanEntity.setBillNo(gennerOrderUtils.createStOrderNo(new OrderNoTypeBean(Constant.JH_ORDER, "yyyyMMdd")));
|
|
|
|
|
purPlanEntity.setBillDate(purApplyEntity.getBillDate());
|
|
|
|
|
purPlanEntity.setStatus(basicBusTypeChangeEntity.getBusAuditStatus());
|
|
|
|
|
purPlanEntity.setRemark(purApplyEntity.getRemark());
|
|
|
|
|
purPlanEntity.setEmergency(purApplyEntity.getEmergency());
|
|
|
|
|
purPlanEntity.setArrivalTime(purApplyEntity.getArrivalTime());
|
|
|
|
|
purPlanEntity.setInvCode(purApplyEntity.getInvCode());
|
|
|
|
|
purPlanEntity.setDeptCode(purApplyEntity.getDeptCode());
|
|
|
|
|
purPlanEntity.setCreateUser(purApplyEntity.getAuditUser());
|
|
|
|
|
purPlanEntity.setCreateTime(timeProcess(purApplyEntity.getCreateTime(),basicBusTypeChangeEntity.getBusBeforeTime()));
|
|
|
|
|
purPlanEntity.setUpdateUser(purApplyEntity.getAuditUser());
|
|
|
|
|
purPlanEntity.setUpdateTime(timeProcess(purApplyEntity.getCreateTime(),basicBusTypeChangeEntity.getBusBeforeTime()));
|
|
|
|
|
if(purPlanEntity.getStatus()==3){
|
|
|
|
|
purPlanEntity.setAuditUser("");
|
|
|
|
|
purPlanEntity.setAuditTime(new Date());
|
|
|
|
|
}
|
|
|
|
|
//插入计划主表
|
|
|
|
|
purPlanService.insert(purPlanEntity);
|
|
|
|
|
//用stream流复制list
|
|
|
|
|
purPlanDetailEntityList = purApplyDetailEntityList.stream().map(e -> {
|
|
|
|
|
PurPlanDetailEntity d = new PurPlanDetailEntity();
|
|
|
|
|
d.setOrderIdFk(purPlanEntity.getId()+"");
|
|
|
|
|
d.setProductId(e.getProductId());
|
|
|
|
|
d.setProductName(e.getProductName());
|
|
|
|
|
d.setCount(e.getCount());
|
|
|
|
|
d.setSupId(e.getSupId());
|
|
|
|
|
d.setZczbhhzbapzbh(e.getZczbhhzbapzbh());
|
|
|
|
|
return d;
|
|
|
|
|
}).collect(Collectors.toList());
|
|
|
|
|
purPlanDetailService.insertPurPlanDetailEntity(purPlanDetailEntityList);
|
|
|
|
|
//更新申购表信息插入计划单号
|
|
|
|
|
PurApplyEntity purApplyEntity1=new PurApplyEntity();
|
|
|
|
|
purApplyEntity1.setId(purApplyEntity.getId());
|
|
|
|
|
purApplyEntity1.setPlanBillNo(purPlanEntity.getBillNo());
|
|
|
|
|
purApplyEntity1.setGeneratePlan(true);
|
|
|
|
|
purApplyService.update(purApplyEntity1);
|
|
|
|
|
//---------------------------------判断计划为已审核就生成计划单-------------------------------------------//\
|
|
|
|
|
PurOrderEntity purOrderEntity=new PurOrderEntity();
|
|
|
|
|
if(purPlanEntity.getStatus()==3){
|
|
|
|
|
basicBusTypeChangeEntity=basicBusTypeChangeService.selectByOriginAction("CGJH");
|
|
|
|
|
if(basicBusTypeChangeEntity!=null && StrUtil.isNotEmpty(basicBusTypeChangeEntity.getTargetBusAction()) && basicBusTypeChangeEntity.isEnable()==true){
|
|
|
|
|
purOrderEntity.setBillNo(gennerOrderUtils.createStOrderNo(new OrderNoTypeBean(Constant.CG_ORDER, "yyyyMMdd")));
|
|
|
|
|
purOrderEntity.setBillDate(purApplyEntity.getBillDate());
|
|
|
|
|
purOrderEntity.setStatus(basicBusTypeChangeEntity.getBusAuditStatus());
|
|
|
|
|
purOrderEntity.setRemark(purApplyEntity.getRemark());
|
|
|
|
|
purOrderEntity.setEmergency(purApplyEntity.getEmergency());
|
|
|
|
|
purOrderEntity.setArrivalTime(purApplyEntity.getArrivalTime());
|
|
|
|
|
purOrderEntity.setInvCode(purApplyEntity.getInvCode());
|
|
|
|
|
purOrderEntity.setDeptCode(purApplyEntity.getDeptCode());
|
|
|
|
|
purOrderEntity.setCreateUser(purApplyEntity.getAuditUser());
|
|
|
|
|
purOrderEntity.setCreateTime(timeProcess(purApplyEntity.getCreateTime(),basicBusTypeChangeEntity.getBusBeforeTime()));
|
|
|
|
|
purOrderEntity.setUpdateUser(purApplyEntity.getAuditUser());
|
|
|
|
|
purOrderEntity.setUpdateTime(timeProcess(purApplyEntity.getCreateTime(),basicBusTypeChangeEntity.getBusBeforeTime()));
|
|
|
|
|
if(purOrderEntity.getStatus()==3){
|
|
|
|
|
purOrderEntity.setAuditUser("");
|
|
|
|
|
purOrderEntity.setAuditTime(new Date());
|
|
|
|
|
}
|
|
|
|
|
//插入订单主表
|
|
|
|
|
purOrderService.insert(purOrderEntity);
|
|
|
|
|
//用stream流复制list
|
|
|
|
|
List<PurOrderDetailEntity> purOrderDetailEntityList = purApplyDetailEntityList.stream().map(e -> {
|
|
|
|
|
PurOrderDetailEntity d = new PurOrderDetailEntity();
|
|
|
|
|
d.setOrderIdFk(purOrderEntity.getId()+"");
|
|
|
|
|
d.setProductId(e.getProductId());
|
|
|
|
|
d.setProductName(e.getProductName());
|
|
|
|
|
d.setCount(e.getCount());
|
|
|
|
|
d.setSupId(e.getSupId());
|
|
|
|
|
d.setZczbhhzbapzbh(e.getZczbhhzbapzbh());
|
|
|
|
|
return d;
|
|
|
|
|
}).collect(Collectors.toList());
|
|
|
|
|
purOrderDetailService.insertPurOrderDetailEntity(purOrderDetailEntityList);
|
|
|
|
|
// 更新计划表信息插入订单单号
|
|
|
|
|
PurPlanEntity purPlanEntity1=new PurPlanEntity();
|
|
|
|
|
purPlanEntity1.setId(purPlanEntity.getId());
|
|
|
|
|
purPlanEntity1.setStockOrderNo(purOrderEntity.getBillNo());
|
|
|
|
|
// purPlanEntity.sets(true);
|
|
|
|
|
purPlanService.update(purPlanEntity1);
|
|
|
|
|
public Boolean generateDocument(PurApplyEntity purApplyEntity) {
|
|
|
|
|
BasicBusTypeChangeEntity basicBusTypeChangeEntity = new BasicBusTypeChangeEntity();
|
|
|
|
|
//查询申购详情
|
|
|
|
|
List<PurApplyDetailEntity> purApplyDetailEntityList = purApplyDetailService.findByOrderId(purApplyEntity.getId() + "");
|
|
|
|
|
//---------------------------------判断申购为已审核就生成计划单-------------------------------------------//
|
|
|
|
|
PurPlanEntity purPlanEntity = new PurPlanEntity();
|
|
|
|
|
List<PurPlanDetailEntity> purPlanDetailEntityList = new ArrayList<>();
|
|
|
|
|
if (purApplyEntity.getStatus() == 3) {
|
|
|
|
|
basicBusTypeChangeEntity = basicBusTypeChangeService.selectByOriginAction("CPSG");
|
|
|
|
|
if (basicBusTypeChangeEntity != null && StrUtil.isNotEmpty(basicBusTypeChangeEntity.getTargetBusAction()) && basicBusTypeChangeEntity.isEnable() == true) {
|
|
|
|
|
purPlanEntity.setBillNo(gennerOrderUtils.createStOrderNo(new OrderNoTypeBean(Constant.JH_ORDER, "yyyyMMdd")));
|
|
|
|
|
purPlanEntity.setBillDate(purApplyEntity.getBillDate());
|
|
|
|
|
purPlanEntity.setStatus(basicBusTypeChangeEntity.getBusAuditStatus());
|
|
|
|
|
purPlanEntity.setRemark(purApplyEntity.getRemark());
|
|
|
|
|
purPlanEntity.setEmergency(purApplyEntity.getEmergency());
|
|
|
|
|
purPlanEntity.setArrivalTime(purApplyEntity.getArrivalTime());
|
|
|
|
|
purPlanEntity.setInvCode(purApplyEntity.getInvCode());
|
|
|
|
|
purPlanEntity.setDeptCode(purApplyEntity.getDeptCode());
|
|
|
|
|
purPlanEntity.setCreateUser(purApplyEntity.getAuditUser());
|
|
|
|
|
purPlanEntity.setCreateTime(timeProcess(purApplyEntity.getCreateTime(), basicBusTypeChangeEntity.getBusBeforeTime()));
|
|
|
|
|
purPlanEntity.setUpdateUser(purApplyEntity.getAuditUser());
|
|
|
|
|
purPlanEntity.setUpdateTime(timeProcess(purApplyEntity.getCreateTime(), basicBusTypeChangeEntity.getBusBeforeTime()));
|
|
|
|
|
if (purPlanEntity.getStatus() == 3) {
|
|
|
|
|
purPlanEntity.setAuditUser("");
|
|
|
|
|
purPlanEntity.setAuditTime(new Date());
|
|
|
|
|
}
|
|
|
|
|
//插入计划主表
|
|
|
|
|
purPlanService.insert(purPlanEntity);
|
|
|
|
|
//用stream流复制list
|
|
|
|
|
purPlanDetailEntityList = purApplyDetailEntityList.stream().map(e -> {
|
|
|
|
|
PurPlanDetailEntity d = new PurPlanDetailEntity();
|
|
|
|
|
d.setOrderIdFk(purPlanEntity.getId() + "");
|
|
|
|
|
d.setProductId(e.getProductId());
|
|
|
|
|
d.setProductName(e.getProductName());
|
|
|
|
|
d.setCount(e.getCount());
|
|
|
|
|
d.setSupId(e.getSupId());
|
|
|
|
|
d.setZczbhhzbapzbh(e.getZczbhhzbapzbh());
|
|
|
|
|
return d;
|
|
|
|
|
}).collect(Collectors.toList());
|
|
|
|
|
purPlanDetailService.insertPurPlanDetailEntity(purPlanDetailEntityList);
|
|
|
|
|
//更新申购表信息插入计划单号
|
|
|
|
|
PurApplyEntity purApplyEntity1 = new PurApplyEntity();
|
|
|
|
|
purApplyEntity1.setId(purApplyEntity.getId());
|
|
|
|
|
purApplyEntity1.setPlanBillNo(purPlanEntity.getBillNo());
|
|
|
|
|
purApplyEntity1.setGeneratePlan(true);
|
|
|
|
|
purApplyService.update(purApplyEntity1);
|
|
|
|
|
//---------------------------------判断计划为已审核就生成计划单-------------------------------------------//\
|
|
|
|
|
PurOrderEntity purOrderEntity = new PurOrderEntity();
|
|
|
|
|
if (purPlanEntity.getStatus() == 3) {
|
|
|
|
|
basicBusTypeChangeEntity = basicBusTypeChangeService.selectByOriginAction("CGJH");
|
|
|
|
|
if (basicBusTypeChangeEntity != null && StrUtil.isNotEmpty(basicBusTypeChangeEntity.getTargetBusAction()) && basicBusTypeChangeEntity.isEnable() == true) {
|
|
|
|
|
purOrderEntity.setBillNo(gennerOrderUtils.createStOrderNo(new OrderNoTypeBean(Constant.CG_ORDER, "yyyyMMdd")));
|
|
|
|
|
purOrderEntity.setBillDate(purApplyEntity.getBillDate());
|
|
|
|
|
purOrderEntity.setStatus(basicBusTypeChangeEntity.getBusAuditStatus());
|
|
|
|
|
purOrderEntity.setRemark(purApplyEntity.getRemark());
|
|
|
|
|
purOrderEntity.setEmergency(purApplyEntity.getEmergency());
|
|
|
|
|
purOrderEntity.setArrivalTime(purApplyEntity.getArrivalTime());
|
|
|
|
|
purOrderEntity.setInvCode(purApplyEntity.getInvCode());
|
|
|
|
|
purOrderEntity.setDeptCode(purApplyEntity.getDeptCode());
|
|
|
|
|
purOrderEntity.setCreateUser(purApplyEntity.getAuditUser());
|
|
|
|
|
purOrderEntity.setCreateTime(timeProcess(purApplyEntity.getCreateTime(), basicBusTypeChangeEntity.getBusBeforeTime()));
|
|
|
|
|
purOrderEntity.setUpdateUser(purApplyEntity.getAuditUser());
|
|
|
|
|
purOrderEntity.setUpdateTime(timeProcess(purApplyEntity.getCreateTime(), basicBusTypeChangeEntity.getBusBeforeTime()));
|
|
|
|
|
if (purOrderEntity.getStatus() == 3) {
|
|
|
|
|
purOrderEntity.setAuditUser("");
|
|
|
|
|
purOrderEntity.setAuditTime(new Date());
|
|
|
|
|
}
|
|
|
|
|
//---------------------------------判断计划为已审核就生成采购入库单-------------------------------------------//\
|
|
|
|
|
//查询申购单详情
|
|
|
|
|
List<PurPlanDetailEntity> purPlanDetailEntities=purPlanDetailService.findByOrderId(purPlanEntity.getId()+"");
|
|
|
|
|
//对计划单里面的供应商进行分组
|
|
|
|
|
Map<String, List<PurPlanDetailEntity>> map = purPlanDetailEntities.stream().collect(Collectors.groupingBy(PurPlanDetailEntity::getSupId));
|
|
|
|
|
String billNo="";
|
|
|
|
|
if(basicBusTypeChangeEntity!=null && StrUtil.isNotEmpty(basicBusTypeChangeEntity.getTargetAction()) && basicBusTypeChangeEntity.isEnable()==true){
|
|
|
|
|
for (Map.Entry<String, List<PurPlanDetailEntity>> m:map.entrySet()) {
|
|
|
|
|
//生产单据表信息
|
|
|
|
|
IoOrderEntity ioOrderEntity=new IoOrderEntity();
|
|
|
|
|
ioOrderEntity.setBillNo(gennerOrderUtils.createScOrderNo(new OrderNoTypeBean(Constant.SCAN_ORDER ,"yyyyMMdd")));
|
|
|
|
|
ioOrderEntity.setCorpOrderId(CustomUtil.getDate());
|
|
|
|
|
ioOrderEntity.setMainAction(ConstantType.TYPE_PUT);
|
|
|
|
|
ioOrderEntity.setAction(basicBusTypeChangeEntity.getTargetAction());
|
|
|
|
|
ioOrderEntity.setFromCorp(m.getKey());
|
|
|
|
|
ioOrderEntity.setFromType(ConstantStatus.FROM_PLAN);
|
|
|
|
|
ioOrderEntity.setStatus(1);
|
|
|
|
|
ioOrderEntity.setDealStatus(1);
|
|
|
|
|
ioOrderEntity.setOrderType(1);
|
|
|
|
|
ioOrderEntity.setCreateTime(new Date());
|
|
|
|
|
ioOrderEntity.setCreateUser(purApplyEntity.getCreateUser());
|
|
|
|
|
ioOrderEntity.setUpdateTime(new Date());
|
|
|
|
|
ioOrderEntity.setUpdateUser(purApplyEntity.getCreateUser());
|
|
|
|
|
ioOrderEntity.setCustomerId("110");
|
|
|
|
|
ioOrderEntity.setDeptCode(purApplyEntity.getInvCode());
|
|
|
|
|
ioOrderEntity.setInvCode(purApplyEntity.getDeptCode());
|
|
|
|
|
ioOrderService.insertOrder(ioOrderEntity);
|
|
|
|
|
billNo+=ioOrderEntity.getBillNo()+",";
|
|
|
|
|
//插入业务单表
|
|
|
|
|
for (PurPlanDetailEntity obj:m.getValue()) {
|
|
|
|
|
BasicProductsEntity basicProductsEntity = purPlanDetailService.selectIoOrderDetailBiz(obj.getId());
|
|
|
|
|
IoOrderDetailBizEntity ioOrderDetailBizEntity = new IoOrderDetailBizEntity();
|
|
|
|
|
ioOrderDetailBizEntity.setOrderIdFk(ioOrderEntity.getBillNo());
|
|
|
|
|
ioOrderDetailBizEntity.setBindRlFk(Long.valueOf(obj.getProductId()));
|
|
|
|
|
ioOrderDetailBizEntity.setCount(obj.getCount());
|
|
|
|
|
ioOrderDetailBizEntity.setUuidFk(basicProductsEntity.getUuid());
|
|
|
|
|
ioOrderDetailBizEntity.setNameCode(basicProductsEntity.getNameCode());
|
|
|
|
|
ioOrderDetailBizEntity.setCoName(basicProductsEntity.getCpmctymc());
|
|
|
|
|
ioOrderDetailBizEntity.setCertCode(basicProductsEntity.getZczbhhzbapzbh());
|
|
|
|
|
ioOrderDetailBizEntity.setYlqxzcrbarmc(basicProductsEntity.getYlqxzcrbarmc());
|
|
|
|
|
ioOrderDetailBizEntity.setManufacturer(basicProductsEntity.getManufactory());
|
|
|
|
|
ioOrderDetailBizEntity.setMeasname(basicProductsEntity.getMeasname());
|
|
|
|
|
ioOrderDetailBizEntity.setSpec(basicProductsEntity.getGgxh());
|
|
|
|
|
if (basicProductsEntity.getPrice() != null) {
|
|
|
|
|
ioOrderDetailBizEntity.setPrice(BigDecimal.valueOf(basicProductsEntity.getPrice()));
|
|
|
|
|
}
|
|
|
|
|
ioOrderDetailBizEntity.setSupId(obj.getSupId());
|
|
|
|
|
ioOrderDetailBizService.insert(ioOrderDetailBizEntity);
|
|
|
|
|
//插入订单主表
|
|
|
|
|
purOrderService.insert(purOrderEntity);
|
|
|
|
|
//用stream流复制list
|
|
|
|
|
List<PurOrderDetailEntity> purOrderDetailEntityList = purApplyDetailEntityList.stream().map(e -> {
|
|
|
|
|
PurOrderDetailEntity d = new PurOrderDetailEntity();
|
|
|
|
|
d.setOrderIdFk(purOrderEntity.getId() + "");
|
|
|
|
|
d.setProductId(e.getProductId());
|
|
|
|
|
d.setProductName(e.getProductName());
|
|
|
|
|
d.setCount(e.getCount());
|
|
|
|
|
d.setSupId(e.getSupId());
|
|
|
|
|
d.setZczbhhzbapzbh(e.getZczbhhzbapzbh());
|
|
|
|
|
return d;
|
|
|
|
|
}).collect(Collectors.toList());
|
|
|
|
|
purOrderDetailService.insertPurOrderDetailEntity(purOrderDetailEntityList);
|
|
|
|
|
// 更新计划表信息插入订单单号
|
|
|
|
|
PurPlanEntity purPlanEntity1 = new PurPlanEntity();
|
|
|
|
|
purPlanEntity1.setId(purPlanEntity.getId());
|
|
|
|
|
purPlanEntity1.setStockOrderNo(purOrderEntity.getBillNo());
|
|
|
|
|
// purPlanEntity.sets(true);
|
|
|
|
|
purPlanService.update(purPlanEntity1);
|
|
|
|
|
}
|
|
|
|
|
//---------------------------------判断计划为已审核就生成采购入库单-------------------------------------------//\
|
|
|
|
|
//查询申购单详情
|
|
|
|
|
List<PurPlanDetailEntity> purPlanDetailEntities = purPlanDetailService.findByOrderId(purPlanEntity.getId() + "");
|
|
|
|
|
//对计划单里面的供应商进行分组
|
|
|
|
|
Map<String, List<PurPlanDetailEntity>> map = purPlanDetailEntities.stream().collect(Collectors.groupingBy(PurPlanDetailEntity::getSupId));
|
|
|
|
|
String billNo = "";
|
|
|
|
|
if (basicBusTypeChangeEntity != null && StrUtil.isNotEmpty(basicBusTypeChangeEntity.getTargetAction()) && basicBusTypeChangeEntity.isEnable() == true) {
|
|
|
|
|
for (Map.Entry<String, List<PurPlanDetailEntity>> m : map.entrySet()) {
|
|
|
|
|
//生产单据表信息
|
|
|
|
|
IoOrderEntity ioOrderEntity = new IoOrderEntity();
|
|
|
|
|
ioOrderEntity.setBillNo(gennerOrderUtils.createScOrderNo(new OrderNoTypeBean(Constant.SCAN_ORDER, "yyyyMMdd")));
|
|
|
|
|
ioOrderEntity.setCorpOrderId(CustomUtil.getDate());
|
|
|
|
|
ioOrderEntity.setMainAction(ConstantType.TYPE_PUT);
|
|
|
|
|
ioOrderEntity.setAction(basicBusTypeChangeEntity.getTargetAction());
|
|
|
|
|
ioOrderEntity.setFromCorp(m.getKey());
|
|
|
|
|
ioOrderEntity.setFromType(ConstantStatus.FROM_PLAN);
|
|
|
|
|
ioOrderEntity.setStatus(1);
|
|
|
|
|
ioOrderEntity.setDealStatus(1);
|
|
|
|
|
ioOrderEntity.setOrderType(1);
|
|
|
|
|
ioOrderEntity.setCreateTime(new Date());
|
|
|
|
|
ioOrderEntity.setCreateUser(purApplyEntity.getCreateUser());
|
|
|
|
|
ioOrderEntity.setUpdateTime(new Date());
|
|
|
|
|
ioOrderEntity.setUpdateUser(purApplyEntity.getCreateUser());
|
|
|
|
|
ioOrderEntity.setCustomerId("110");
|
|
|
|
|
ioOrderEntity.setDeptCode(purApplyEntity.getInvCode());
|
|
|
|
|
ioOrderEntity.setInvCode(purApplyEntity.getDeptCode());
|
|
|
|
|
ioOrderService.insertOrder(ioOrderEntity);
|
|
|
|
|
billNo += ioOrderEntity.getBillNo() + ",";
|
|
|
|
|
//插入业务单表
|
|
|
|
|
for (PurPlanDetailEntity obj : m.getValue()) {
|
|
|
|
|
BasicProductsEntity basicProductsEntity = purPlanDetailService.selectIoOrderDetailBiz(obj.getId());
|
|
|
|
|
IoOrderDetailBizEntity ioOrderDetailBizEntity = new IoOrderDetailBizEntity();
|
|
|
|
|
ioOrderDetailBizEntity.setOrderIdFk(ioOrderEntity.getBillNo());
|
|
|
|
|
ioOrderDetailBizEntity.setBindRlFk(Long.valueOf(obj.getProductId()));
|
|
|
|
|
ioOrderDetailBizEntity.setCount(obj.getCount());
|
|
|
|
|
ioOrderDetailBizEntity.setUuidFk(basicProductsEntity.getUuid());
|
|
|
|
|
ioOrderDetailBizEntity.setNameCode(basicProductsEntity.getNameCode());
|
|
|
|
|
ioOrderDetailBizEntity.setCoName(basicProductsEntity.getCpmctymc());
|
|
|
|
|
ioOrderDetailBizEntity.setCertCode(basicProductsEntity.getZczbhhzbapzbh());
|
|
|
|
|
ioOrderDetailBizEntity.setYlqxzcrbarmc(basicProductsEntity.getYlqxzcrbarmc());
|
|
|
|
|
ioOrderDetailBizEntity.setManufacturer(basicProductsEntity.getManufactory());
|
|
|
|
|
ioOrderDetailBizEntity.setMeasname(basicProductsEntity.getMeasname());
|
|
|
|
|
ioOrderDetailBizEntity.setSpec(basicProductsEntity.getGgxh());
|
|
|
|
|
if (basicProductsEntity.getPrice() != null) {
|
|
|
|
|
ioOrderDetailBizEntity.setPrice(BigDecimal.valueOf(basicProductsEntity.getPrice()));
|
|
|
|
|
}
|
|
|
|
|
ioOrderDetailBizEntity.setSupId(obj.getSupId());
|
|
|
|
|
ioOrderDetailBizService.insert(ioOrderDetailBizEntity);
|
|
|
|
|
}
|
|
|
|
|
PurPlanEntity purPlanEntity1=new PurPlanEntity();
|
|
|
|
|
purPlanEntity1.setId(purPlanEntity.getId());
|
|
|
|
|
purPlanEntity1.setStockOrderNo(billNo.substring(0,billNo.length()-1));
|
|
|
|
|
purPlanService.update(purPlanEntity1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
PurPlanEntity purPlanEntity1 = new PurPlanEntity();
|
|
|
|
|
purPlanEntity1.setId(purPlanEntity.getId());
|
|
|
|
|
purPlanEntity1.setStockOrderNo(billNo.substring(0, billNo.length() - 1));
|
|
|
|
|
purPlanService.update(purPlanEntity1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Date timeProcess(Date date,Integer timeCount) {
|
|
|
|
|
public Date timeProcess(Date date, Integer timeCount) {
|
|
|
|
|
Calendar rightNow = Calendar.getInstance();
|
|
|
|
|
rightNow.setTime(date);
|
|
|
|
|
rightNow.add(Calendar.HOUR,timeCount);
|
|
|
|
|
rightNow.add(Calendar.HOUR, timeCount);
|
|
|
|
|
Date dt1 = rightNow.getTime();
|
|
|
|
|
return dt1;
|
|
|
|
|
}
|
|
|
|
@ -462,7 +463,7 @@ public class PurApplyController {
|
|
|
|
|
return ResultVOUtils.success("删除成功");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*** 插入申购单详情 */
|
|
|
|
|
/*** 插入申购单详情 */
|
|
|
|
|
/**
|
|
|
|
|
* 新增申购单
|
|
|
|
|
*/
|
|
|
|
@ -473,6 +474,7 @@ public class PurApplyController {
|
|
|
|
|
purApplyDetailService.insert(purApplyDetailEntity);
|
|
|
|
|
return ResultVOUtils.success(purApplyDetailEntity.getOrderIdFk());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 新增申购单
|
|
|
|
|
*/
|
|
|
|
@ -487,7 +489,7 @@ public class PurApplyController {
|
|
|
|
|
purApplyEntity.setUpdateTime(new Date());
|
|
|
|
|
purApplyEntity.setUpdateUser(userId + "");
|
|
|
|
|
purApplyService.insert(purApplyEntity);
|
|
|
|
|
Long id=purApplyEntity.getId();
|
|
|
|
|
Long id = purApplyEntity.getId();
|
|
|
|
|
return ResultVOUtils.success(id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -499,13 +501,13 @@ public class PurApplyController {
|
|
|
|
|
@PostMapping("/purchase/apply/delApplyDetailAll")
|
|
|
|
|
public BaseResponse delApplyDetailAll(@RequestBody PurApplyEntity purApplyEntity) {
|
|
|
|
|
|
|
|
|
|
if(purApplyEntity.getId()!=null){
|
|
|
|
|
purApplyService.deleteById(purApplyEntity.getId());
|
|
|
|
|
purApplyDetailService.deleteByOrderId(purApplyEntity.getId() + "" );
|
|
|
|
|
}else {
|
|
|
|
|
return ResultVOUtils.error(999,"参数有误!");
|
|
|
|
|
if (purApplyEntity.getId() != null) {
|
|
|
|
|
purApplyService.deleteById(purApplyEntity.getId());
|
|
|
|
|
purApplyDetailService.deleteByOrderId(purApplyEntity.getId() + "");
|
|
|
|
|
} else {
|
|
|
|
|
return ResultVOUtils.error(999, "参数有误!");
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|