Merge remote-tracking branch 'origin/master'

master
zpl 3 years ago
commit c7c783f2cc

@ -87,7 +87,7 @@ public class ExportAspect {
}//for }//for
//------------------------------------------------------------------------------------------------------------------- //-------------------------------------------------------------------------------------------------------------------
Object result = joinPoint.proceed(args); Object result = joinPoint.proceed(args);
JSONObject resultJson = JSON.parseObject(JSON.toJSONStringWithDateFormat(result, "yyyy-MM-dd HH:mm:ss", SerializerFeature.WriteDateUseDateFormat)); JSONObject resultJson = JSON.parseObject(JSON.toJSONString(result));
if (resultJson.get("data") instanceof List) { if (resultJson.get("data") instanceof List) {
List dataList = (List)resultJson.get("data"); List dataList = (List)resultJson.get("data");
exportData(exportCode, dataList, request, attributes.getResponse()); exportData(exportCode, dataList, request, attributes.getResponse());

@ -494,18 +494,20 @@ public class ProdReadyTaskServiceImpl extends ServiceImpl<ProdReadyTaskMapper, P
} }
//下道工序 //下道工序
Router router = routerService.getRouterBySfcBo(HandleEnum.SFC.getHandle(site, sfcServiceById.getSfc())); Router router = routerService.getRouterBySfcBo(HandleEnum.SFC.getHandle(site, sfcServiceById.getSfc()));
int seq = 0; if (router==null){
throw new BaseException("未找到当前工序");
}
List<RouterStepDto> stepOperationList = routerStepService.findRouterOperationByRouterBo(site, router.getHandle()); List<RouterStepDto> stepOperationList = routerStepService.findRouterOperationByRouterBo(site, router.getHandle());
StringBuilder operationDesc = new StringBuilder();
for (int i = 0; i < stepOperationList.size(); i++) { for (int i = 0; i < stepOperationList.size(); i++) {
RouterStepDto stepOperation = stepOperationList.get(i); RouterStepDto stepOperation = stepOperationList.get(i);
if (stepOperation.getStepId().equals(prodReadyTask.getStepId())) { operationDesc.append(stepOperation.getOperationDesc()) ;
seq = i; if (i!=stepOperationList.size()-1){
} operationDesc.append(",");
} }
if (seq != stepOperationList.size() - 1) {
RouterStepDto stepOperation = stepOperationList.get(seq + 1);
labelPrintDto.setOperation(stepOperation.getOperationDesc());
} }
labelPrintDto.setOperation(operationDesc.toString());
labelPrintDtoList.add(labelPrintDto); labelPrintDtoList.add(labelPrintDto);
printData = JSON.toJSONString(labelPrintDtoList); printData = JSON.toJSONString(labelPrintDtoList);
//打印记录 //打印记录

@ -69,7 +69,7 @@ public class ItemWSClient {
//物料类型(FERT(已完成)/ROH(原始)/HALB(半成品)/KMAT(可配置)/INST(安装)/VERP(包装)/FHMI(生产资源/工具)/CSTM(自定义)) //物料类型(FERT(已完成)/ROH(原始)/HALB(半成品)/KMAT(可配置)/INST(安装)/VERP(包装)/FHMI(生产资源/工具)/CSTM(自定义))
String itemTypeDesc = jsonObject.getString("materialType"); String itemTypeDesc = jsonObject.getString("materialType");
if (!"已完成".equals(itemTypeDesc) && !"原始".equals(itemTypeDesc) && !"半成品".equals(itemTypeDesc)) { if (!"已完成".equals(itemTypeDesc) && !"原始".equals(itemTypeDesc) && !"半成品".equals(itemTypeDesc)) {
throw BusinessException.build("物料类型可维护的值为:FERT(已完成)ROH(原始)HALB(半成品)"); throw BusinessException.build("物料类型可维护的值为:已完成、原始、半成品");
} }
String itemType = "ROH"; String itemType = "ROH";
switch (itemTypeDesc) { switch (itemTypeDesc) {
@ -88,19 +88,19 @@ public class ItemWSClient {
//采购类型(M(制造)/P(采购)/B(制造/采购)) //采购类型(M(制造)/P(采购)/B(制造/采购))
String procurementTypeDesc = jsonObject.getString("itemType"); String procurementTypeDesc = jsonObject.getString("itemType");
if (!"M".equals(procurementTypeDesc) && !"P".equals(procurementTypeDesc) && !"B".equals(procurementTypeDesc)) { if (!"制造".equals(procurementTypeDesc) && !"采购".equals(procurementTypeDesc) && !"制造/采购".equals(procurementTypeDesc)) {
throw BusinessException.build("采购类型可维护的值为:M(制造)P(采购)B(制造/采购)"); throw BusinessException.build("采购类型可维护的值为:制造、采购、制造/采购");
} }
String procurementType = "P"; String procurementType = "P";
switch (procurementTypeDesc) { switch (procurementTypeDesc) {
case "采购": case "采购":
itemType = "P"; procurementType = "P";
break; break;
case "制造/采购": case "制造/采购":
itemType = "B"; procurementType = "B";
break; break;
case "制造": case "制造":
itemType = "M"; procurementType = "M";
break; break;
default: default:
break; break;
@ -146,7 +146,7 @@ public class ItemWSClient {
case "任意数字": case "任意数字":
itemConfiguration.setQuantityRestriction(QuantityRestriction.ANY_NUMBER); itemConfiguration.setQuantityRestriction(QuantityRestriction.ANY_NUMBER);
break; break;
case "数": case "数":
itemConfiguration.setQuantityRestriction(QuantityRestriction.WHOLE_NUMBER); itemConfiguration.setQuantityRestriction(QuantityRestriction.WHOLE_NUMBER);
break; break;
default: default:

@ -62,10 +62,9 @@ public class ItemHandler extends BaseHandler {
jsonObject.put("site", site); jsonObject.put("site", site);
ItemFullConfiguration itemFull = ItemWSClient.find(jsonObject); ItemFullConfiguration itemFull = ItemWSClient.find(jsonObject);
if (itemFull == null) { if (itemFull == null) {
resultMessage = "物料主数据不存在"; resultMessage = ItemWSClient.insert(jsonObject);
} else { } else {
ItemWSClient.update(jsonObject, itemFull); resultMessage = ItemWSClient.update(jsonObject, itemFull);
return 1;
} }
if (resultMessage != null) { if (resultMessage != null) {
@ -74,6 +73,8 @@ public class ItemHandler extends BaseHandler {
buffer.append("第" + index + "行:" + I18nUtil.getI18nText("MaterData.import.update.fail", params) + "\n"); buffer.append("第" + index + "行:" + I18nUtil.getI18nText("MaterData.import.update.fail", params) + "\n");
return 0; return 0;
} }
return 1;
} }
return 0; return 0;

@ -20,12 +20,12 @@ public class MasterObjectDefine {
cvsHeadsMapping = new HashMap<>(); cvsHeadsMapping = new HashMap<>();
cvsHeadsMapping.put("seqNum","序号"); cvsHeadsMapping.put("seqNum","序号");
cvsHeadsMapping.put("item", "*物料编码"); cvsHeadsMapping.put("item", "物料编码");
cvsHeadsMapping.put("itemDesc", "物料描述(中文)"); cvsHeadsMapping.put("itemDesc", "物料描述(中文)");
cvsHeadsMapping.put("materialType", "物料类型"); cvsHeadsMapping.put("materialType", "物料类型(原始|半成品|已完成)");
cvsHeadsMapping.put("itemType", "采购类型"); cvsHeadsMapping.put("itemType", "采购类型(采购|制造/采购|制造)");
cvsHeadsMapping.put("lotSize","批次大小"); cvsHeadsMapping.put("lotSize","批次大小");
cvsHeadsMapping.put("qtyRestriction","数量限制"); cvsHeadsMapping.put("qtyRestriction","数量限制(仅1.0|任意数字|整数)");
cvsHeadsMapping.put("unit","计量单位"); cvsHeadsMapping.put("unit","计量单位");
break; break;

@ -356,7 +356,7 @@ public class PodTemplateServiceImpl implements PodTemplateService {
SfcDispatchDto sfcdispatch = new SfcDispatchDto(); SfcDispatchDto sfcdispatch = new SfcDispatchDto();
sfcdispatch.setHandle(HandleEnum.SFC_DISPATCH.getHandle(site, dispatchNo)); sfcdispatch.setHandle(HandleEnum.SFC_DISPATCH.getHandle(site, dispatchNo));
sfcdispatch = sfcDispatchCommonService.findSfcDispatchBySfc(sfcdispatch); sfcdispatch = sfcDispatchCommonService.findSfcDispatchBySfc(sfcdispatch);
sendErp(sfc, stepId, qty, BigDecimal.ZERO, sfcdispatch.getProdHours()); sendErp(sfc, stepId, qty, BigDecimal.ZERO, qty.multiply(sfcdispatch.getProdHours()));
} }
} catch (Exception e) { } catch (Exception e) {
ExceptionUtil.throwException(e); ExceptionUtil.throwException(e);

Loading…
Cancel
Save