Merge remote-tracking branch 'origin/master'

master
夜笙歌 1 year ago
commit 703e5c124f

@ -58,6 +58,11 @@ public class LoginUser implements Serializable
*/
private SysUser sysUser;
/**
* ID
*/
private Long stationId;
public String getToken()
{
return token;
@ -147,4 +152,12 @@ public class LoginUser implements Serializable
{
this.sysUser = sysUser;
}
public Long getStationId() {
return stationId;
}
public void setStationId(Long stationId) {
this.stationId = stationId;
}
}

@ -42,6 +42,7 @@ public class TokenController
{
// 用户登录
LoginUser userInfo = sysLoginService.login(form.getUsername(), form.getPassword());
userInfo.setStationId(form.getStationId());
// 获取登录token
return R.ok(tokenService.createToken(userInfo));
}

@ -2,7 +2,7 @@ package com.hw.auth.form;
/**
*
*
*
* @author ruoyi
*/
public class LoginBody
@ -17,6 +17,13 @@ public class LoginBody
*/
private String password;
/**
* ID
*/
private Long stationId;
public String getUsername()
{
return username;
@ -36,4 +43,12 @@ public class LoginBody
{
this.password = password;
}
public Long getStationId() {
return stationId;
}
public void setStationId(Long stationId) {
this.stationId = stationId;
}
}

@ -15,4 +15,25 @@ public class MesConstants {
public static final String MES_BARCODE_TYPE_PRODUCT = "3";//成品
public static final String MES_BARCODE_TYPE_BACKPLATE = "4";//背板
/** 工单状态0-待发布 */
public static final String UN_PUBLISH = "0";
/** 工单状态0-已发布 */
public static final String PUBLISHED = "1";
/** 工单状态2-已完成 */
public static final String FINISHED = "2";
/** 工单状态3-已开始 */
public static final String BEGIN = "3";
/** 工单状态4-暂停 */
public static final String PAUSE = "4";
/** 工单状态8-已撤回 */
public static final String RECALL = "8";
/** 工单状态9-已删除 */
public static final String DELETE = "9";
}

@ -2,7 +2,7 @@ package com.hw.common.core.constant;
/**
*
*
*
* @author ruoyi
*/
public class SecurityConstants
@ -46,4 +46,10 @@ public class SecurityConstants
*
*/
public static final String ROLE_PERMISSION = "role_permission";
/**
* ID
*/
public static final String DETAILS_STATION_ID = "station_id";
}

@ -8,7 +8,7 @@ import com.hw.common.core.text.Convert;
import com.hw.common.core.utils.StringUtils;
/**
* 线 idToken
* 线 idToken
* HeaderInterceptor
*
* @author ruoyi
@ -95,4 +95,16 @@ public class SecurityContextHolder
{
THREAD_LOCAL.remove();
}
public static Long getStationId()
{
return Convert.toLong(get(SecurityConstants.DETAILS_STATION_ID), 0L);
}
public static void setStationId(String stationId)
{
set(SecurityConstants.DETAILS_STATION_ID, stationId);
}
}

@ -42,7 +42,7 @@ public class JwtUtils
/**
*
*
*
* @param token
* @return ID
*/
@ -54,7 +54,7 @@ public class JwtUtils
/**
*
*
*
* @param claims
* @return ID
*/
@ -65,7 +65,7 @@ public class JwtUtils
/**
* ID
*
*
* @param token
* @return ID
*/
@ -77,7 +77,7 @@ public class JwtUtils
/**
* ID
*
*
* @param claims
* @return ID
*/
@ -88,7 +88,7 @@ public class JwtUtils
/**
*
*
*
* @param token
* @return
*/
@ -100,7 +100,7 @@ public class JwtUtils
/**
*
*
*
* @param claims
* @return
*/
@ -111,7 +111,7 @@ public class JwtUtils
/**
*
*
*
* @param claims
* @param key
* @return
@ -120,4 +120,17 @@ public class JwtUtils
{
return Convert.toStr(claims.get(key), "");
}
/**
* ID
*
* @param claims
* @return ID
*/
public static String getStationId(Claims claims)
{
return getValue(claims, SecurityConstants.DETAILS_STATION_ID);
}
}

@ -44,6 +44,15 @@ public class Seq {
// 原材料退库记录标识
public static final String rawReturnCode = "RR";
// 工单编号序列类型
public static final String orderCodeSeqType = "ORDER_CODE";
// 工单编号序列数
private static AtomicInteger orderCodeSeq = new AtomicInteger(1);
// 工单编号记录标识
public static final String orderCodeCode = "OC";
/**
*
@ -111,8 +120,10 @@ public class Seq {
atomicInt = productOutstockSeq;
}else if (rawReturnSeqType.equals(type)) {
atomicInt = rawReturnSeq;
}else if (orderCodeSeqType.equals(type)) {
atomicInt = orderCodeSeq;
}
return getId(atomicInt, 3,code);
return getId(atomicInt, 3, code);
}

@ -31,6 +31,7 @@ public class HeaderInterceptor implements AsyncHandlerInterceptor
SecurityContextHolder.setUserId(ServletUtils.getHeader(request, SecurityConstants.DETAILS_USER_ID));
SecurityContextHolder.setUserName(ServletUtils.getHeader(request, SecurityConstants.DETAILS_USERNAME));
SecurityContextHolder.setUserKey(ServletUtils.getHeader(request, SecurityConstants.USER_KEY));
SecurityContextHolder.setStationId(ServletUtils.getHeader(request, SecurityConstants.DETAILS_STATION_ID));
String token = SecurityUtils.getToken();
if (StringUtils.isNotEmpty(token))

@ -21,7 +21,7 @@ import com.hw.system.api.model.LoginUser;
/**
* token
*
*
* @author ruoyi
*/
@Component
@ -61,6 +61,7 @@ public class TokenService
claimsMap.put(SecurityConstants.USER_KEY, token);
claimsMap.put(SecurityConstants.DETAILS_USER_ID, userId);
claimsMap.put(SecurityConstants.DETAILS_USERNAME, userName);
claimsMap.put(SecurityConstants.DETAILS_STATION_ID, loginUser.getStationId());
// 接口返回信息
Map<String, Object> rspMap = new HashMap<String, Object>();
@ -171,4 +172,4 @@ public class TokenService
{
return ACCESS_TOKEN + token;
}
}
}

@ -11,7 +11,7 @@ import com.hw.system.api.model.LoginUser;
/**
*
*
*
* @author ruoyi
*/
public class SecurityUtils
@ -40,6 +40,14 @@ public class SecurityUtils
return SecurityContextHolder.getUserKey();
}
/**
* ID
*/
public static Long getStationd()
{
return SecurityContextHolder.getStationId();
}
/**
*
*/
@ -81,7 +89,7 @@ public class SecurityUtils
/**
*
*
*
* @param userId ID
* @return
*/

@ -23,7 +23,7 @@ import reactor.core.publisher.Mono;
/**
*
*
*
* @author ruoyi
*/
@Component
@ -69,6 +69,7 @@ public class AuthFilter implements GlobalFilter, Ordered
}
String userid = JwtUtils.getUserId(claims);
String username = JwtUtils.getUserName(claims);
String stationId = JwtUtils.getStationId(claims);
if (StringUtils.isEmpty(userid) || StringUtils.isEmpty(username))
{
return unauthorizedResponse(exchange, "令牌验证失败");
@ -78,6 +79,7 @@ public class AuthFilter implements GlobalFilter, Ordered
addHeader(mutate, SecurityConstants.USER_KEY, userkey);
addHeader(mutate, SecurityConstants.DETAILS_USER_ID, userid);
addHeader(mutate, SecurityConstants.DETAILS_USERNAME, username);
addHeader(mutate, SecurityConstants.DETAILS_STATION_ID, stationId);
// 内部请求来源参数清除
removeHeader(mutate, SecurityConstants.FROM_SOURCE);
return chain.filter(exchange.mutate().request(mutate.build()).build());
@ -132,4 +134,4 @@ public class AuthFilter implements GlobalFilter, Ordered
{
return -200;
}
}
}

@ -132,7 +132,7 @@ public class BaseMonitorInfo1ServiceImpl implements IBaseMonitorInfo1Service {
TdTableVo tableVo = new TdTableVo();
tableVo.setDatabaseName("db_hwmes");
tableVo.setSuperTableName("st_electricity");
tableVo.setTableName(TdEngineConstants.getEmsTableName(objid));
tableVo.setTableName(TdEngineConstants.getEmsTableName(monitorId));
List<TdField> fields = new ArrayList<TdField>();
TdField field = new TdField();
TdField field2 = new TdField();
@ -267,7 +267,7 @@ public class BaseMonitorInfo1ServiceImpl implements IBaseMonitorInfo1Service {
*/
private void updateTdEngineTable(BaseMonitorInfo baseMonitorInfo, BaseMonitorInfo dbBaseMonitorInfo) {
String databaseName = TdEngineConstants.EMS_DATABASE_NAME;
String tableName = TdEngineConstants.getEmsTableName(baseMonitorInfo.getObjid());
String tableName = TdEngineConstants.getEmsTableName(baseMonitorInfo.getMonitorId());
List<AlterTagVo> alterTagVos = new ArrayList<AlterTagVo>();
R<?> tdReturnMsg;

@ -363,8 +363,7 @@ public class RecordAlarmDataServiceImpl implements IRecordAlarmDataService {
tdSelectDto.setSchemaFieldValues(listTdfields);
List<BaseMonitorInfo> baseMonitorInfos = baseMonitorInfo1Service.selectBaseMonitorInfoList(new BaseMonitorInfo());
for (BaseMonitorInfo baseMonitorInfo : baseMonitorInfos){
tdSelectDto.setTableName(TdEngineConstants.getEmsTableName(baseMonitorInfo.getObjid()));
// tdSelectDto.setTableName(TdEngineConstants.getEmsTableName("ceshi7"));
tdSelectDto.setTableName(TdEngineConstants.getEmsTableName(baseMonitorInfo.getMonitorId()));
tdSelectDto.setTagsName("monitorobjid");
//查出每个计量设备最新的一条实时数据

@ -213,7 +213,7 @@ public class RecordDnbInstantServiceImpl implements IRecordDnbInstantService {
TdTableVo tdTableVo = new TdTableVo();
tdTableVo.setDatabaseName("db_hwmes");
tdTableVo.setSuperTableName("st_electricity");
tdTableVo.setTableName("t_e_"+baseMonitorInfos.get(0).getObjid());
tdTableVo.setTableName(TdEngineConstants.getEmsTableName(baseMonitorInfos.get(0).getMonitorId()));
List<TdField> fields = new ArrayList<TdField>();
List<TdField> field2s = new ArrayList<TdField>();
TdField field = new TdField();
@ -434,10 +434,9 @@ public class RecordDnbInstantServiceImpl implements IRecordDnbInstantService {
if (!baseMonitorInfos.isEmpty()) {
for (BaseMonitorInfo baseMonitorInfo : baseMonitorInfos) {
try {
String emsTableName = TdEngineConstants.getEmsTableName(baseMonitorInfo.getObjid());
String emsTableName = TdEngineConstants.getEmsTableName(baseMonitorInfo.getMonitorId());
//获取当前数据以及一小时前的数据
tdHistorySelectDto.setTableName(emsTableName);
// tdHistorySelectDto.setTableName("t_e_ceshi7");
List<Map<String, Object>> dnbInstant = remoteTdEngineService.getHistoryData(tdHistorySelectDto, SecurityConstants.INNER).getData().getDataList();
R<TdReturnDataVo> historyData = remoteTdEngineService.getHistoryData(tdHistorySelectDto, SecurityConstants.INNER);
ReportPointDnb report = new ReportPointDnb();

@ -2,10 +2,18 @@ package com.hw.mes.controller;
import com.hw.common.core.web.controller.BaseController;
import com.hw.common.core.web.domain.AjaxResult;
import com.hw.common.log.annotation.Log;
import com.hw.common.log.enums.BusinessType;
import com.hw.common.security.annotation.RequiresPermissions;
import com.hw.mes.domain.MesMaterialBom;
import com.hw.mes.domain.MesProductPlan;
import com.hw.mes.domain.MesProductPlanDetail;
import com.hw.mes.domain.vo.MesProductPlanDetailVo;
import com.hw.mes.service.IMesMaterialBomService;
import com.hw.mes.service.IMesProductPlanDetailService;
import com.hw.mes.service.IMesProductPlanService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
import java.util.List;
@ -23,6 +31,12 @@ public class MesApiController extends BaseController
@Autowired
private IMesMaterialBomService mesMaterialBomService;
@Autowired
private IMesProductPlanService productPlanService;
@Autowired
private IMesProductPlanDetailService productPlanDetailService;
/**
* BOM
*/
@ -35,4 +49,37 @@ public class MesApiController extends BaseController
}
/**
*
*/
// @RequiresPermissions("mes:materialBom:list")
@GetMapping("/getProductPlans")
public AjaxResult getProductPlans(MesProductPlan mesProductPlan)
{
List<MesProductPlan> list = productPlanService.selectMesProductPlanJoinList(mesProductPlan);
return success(list);
}
/**
*
*/
@Log(title = "生产计划明细", businessType = BusinessType.INSERT)
@PostMapping(("/insertProductPlanDetails"))
public AjaxResult insertProductPlanDetails(@Validated @RequestBody MesProductPlanDetailVo mesProductPlanDetailVo) {
return toAjax(productPlanDetailService.insertMesProductPlanDetails(mesProductPlanDetailVo));
}
/**
* ID
*/
// @RequiresPermissions("mes:materialBom:list")
@GetMapping("/getProductPlanDetails")
public AjaxResult getProductPlanDetails(MesProductPlanDetail mesProductPlanDetail)
{
List<MesProductPlanDetail> list = productPlanDetailService.selectMesProductPlanDetailList(mesProductPlanDetail);
return success(list);
}
}

@ -103,4 +103,14 @@ public class MesMaterialBomController extends BaseController
{
return toAjax(mesMaterialBomService.deleteMesMaterialBomByMaterialBomIds(materialBomIds));
}
/**
* BOM
*/
@GetMapping(value = "/getMaterialVisionList/{materialId}")
public AjaxResult getMaterialVisionList(@PathVariable("materialId") Long materialId)
{
return success(mesMaterialBomService.getMaterialVisionList(materialId));
}
}

@ -0,0 +1,119 @@
package com.hw.mes.controller;
import java.util.List;
import java.io.IOException;
import javax.servlet.http.HttpServletResponse;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.hw.common.log.annotation.Log;
import com.hw.common.log.enums.BusinessType;
import com.hw.common.security.annotation.RequiresPermissions;
import com.hw.mes.domain.MesProductOrder;
import com.hw.mes.service.IMesProductOrderService;
import com.hw.common.core.web.controller.BaseController;
import com.hw.common.core.web.domain.AjaxResult;
import com.hw.common.core.utils.poi.ExcelUtil;
import com.hw.common.core.web.page.TableDataInfo;
/**
* Controller
*
* @author Yinq
* @date 2024-02-20
*/
@RestController
@RequestMapping("/productOrder")
public class MesProductOrderController extends BaseController {
@Autowired
private IMesProductOrderService mesProductOrderService;
/**
*
*/
@RequiresPermissions("mes:productOrder:list")
@GetMapping("/list")
public TableDataInfo list(MesProductOrder mesProductOrder) {
startPage();
List<MesProductOrder> list = mesProductOrderService.selectMesProductOrderList(mesProductOrder);
return getDataTable(list);
}
/**
*
*/
@RequiresPermissions("mes:productOrder:export")
@Log(title = "生产工单", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, MesProductOrder mesProductOrder) {
List<MesProductOrder> list = mesProductOrderService.selectMesProductOrderList(mesProductOrder);
ExcelUtil<MesProductOrder> util = new ExcelUtil<MesProductOrder>(MesProductOrder.class);
util.exportExcel(response, list, "生产工单数据");
}
/**
*
*/
@RequiresPermissions("mes:productOrder:query")
@GetMapping(value = "/{productOrderId}")
public AjaxResult getInfo(@PathVariable("productOrderId") Long productOrderId) {
return success(mesProductOrderService.selectMesProductOrderByProductOrderId(productOrderId));
}
/**
*
*/
@RequiresPermissions("mes:productOrder:add")
@Log(title = "生产工单", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody MesProductOrder mesProductOrder) {
return toAjax(mesProductOrderService.insertMesProductOrder(mesProductOrder));
}
/**
*
*/
@RequiresPermissions("mes:productOrder:edit")
@Log(title = "生产工单", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody MesProductOrder mesProductOrder) {
return toAjax(mesProductOrderService.updateMesProductOrder(mesProductOrder));
}
/**
*
*/
@RequiresPermissions("mes:productOrder:remove")
@Log(title = "生产工单", businessType = BusinessType.DELETE)
@DeleteMapping("/{productOrderIds}")
public AjaxResult remove(@PathVariable Long[] productOrderIds) {
return toAjax(mesProductOrderService.deleteMesProductOrderByProductOrderIds(productOrderIds));
}
/**
*
*/
@Log(title = "生产工单", businessType = BusinessType.UPDATE)
@PostMapping("/productOrderLockInventory")
public AjaxResult productOrderLockInventory(@RequestBody MesProductOrder mesProductOrder) {
return toAjax(mesProductOrderService.productOrderLockInventory(mesProductOrder));
}
/**
*
*
* @return orderCode
*/
@GetMapping(value = "/getOrderCode")
public AjaxResult getOrderCode() {
return success(mesProductOrderService.getOrderCode());
}
}

@ -0,0 +1,105 @@
package com.hw.mes.controller;
import java.util.List;
import java.io.IOException;
import javax.servlet.http.HttpServletResponse;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.hw.common.log.annotation.Log;
import com.hw.common.log.enums.BusinessType;
import com.hw.common.security.annotation.RequiresPermissions;
import com.hw.mes.domain.MesProductPlan;
import com.hw.mes.service.IMesProductPlanService;
import com.hw.common.core.web.controller.BaseController;
import com.hw.common.core.web.domain.AjaxResult;
import com.hw.common.core.utils.poi.ExcelUtil;
import com.hw.common.core.web.page.TableDataInfo;
/**
* Controller
*
* @author xins
* @date 2024-02-21
*/
@RestController
@RequestMapping("/productplan")
public class MesProductPlanController extends BaseController
{
@Autowired
private IMesProductPlanService mesProductPlanService;
/**
*
*/
@RequiresPermissions("mes:productplan:list")
@GetMapping("/list")
public TableDataInfo list(MesProductPlan mesProductPlan)
{
startPage();
List<MesProductPlan> list = mesProductPlanService.selectMesProductPlanList(mesProductPlan);
return getDataTable(list);
}
/**
*
*/
@RequiresPermissions("mes:productplan:export")
@Log(title = "生产派工", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, MesProductPlan mesProductPlan)
{
List<MesProductPlan> list = mesProductPlanService.selectMesProductPlanList(mesProductPlan);
ExcelUtil<MesProductPlan> util = new ExcelUtil<MesProductPlan>(MesProductPlan.class);
util.exportExcel(response, list, "生产派工数据");
}
/**
*
*/
@RequiresPermissions("mes:productplan:query")
@GetMapping(value = "/{planId}")
public AjaxResult getInfo(@PathVariable("planId") Long planId)
{
return success(mesProductPlanService.selectMesProductPlanByPlanId(planId));
}
/**
*
*/
@RequiresPermissions("mes:productplan:add")
@Log(title = "生产派工", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody MesProductPlan mesProductPlan)
{
return toAjax(mesProductPlanService.insertMesProductPlan(mesProductPlan));
}
/**
*
*/
@RequiresPermissions("mes:productplan:edit")
@Log(title = "生产派工", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody MesProductPlan mesProductPlan)
{
return toAjax(mesProductPlanService.updateMesProductPlan(mesProductPlan));
}
/**
*
*/
@RequiresPermissions("mes:productplan:remove")
@Log(title = "生产派工", businessType = BusinessType.DELETE)
@DeleteMapping("/{planIds}")
public AjaxResult remove(@PathVariable Long[] planIds)
{
return toAjax(mesProductPlanService.deleteMesProductPlanByPlanIds(planIds));
}
}

@ -75,6 +75,19 @@ public class MesMaterialBom extends TreeEntity {
@Excel(name = "物料编号")
private String materialCode;
/**
* &
*/
private String materialNameDesc;
public String getMaterialNameDesc() {
return materialNameDesc;
}
public void setMaterialNameDesc(String materialNameDesc) {
this.materialNameDesc = materialNameDesc;
}
public String getMaterialBomDesc() {
return materialBomDesc;
}

@ -0,0 +1,110 @@
package com.hw.mes.domain;
import java.math.BigDecimal;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.hw.common.core.annotation.Excel;
import com.hw.common.core.web.domain.BaseEntity;
/**
* mes_material_check_result
*
* @author xins
* @date 2024-02-21
*/
public class MesMaterialCheckResult extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** 主键标识 */
private Long materialCheckResultId;
/** 生产计划ID关联mes_product_plan的plan_id */
@Excel(name = "生产计划ID关联mes_product_plan的plan_id")
private Long planId;
/** 生产计划明细ID关联mes_product_plan_detail的plan_detail_id */
@Excel(name = "生产计划明细ID关联mes_product_plan_detail的plan_detail_id")
private Long planDetailId;
/** 物料ID */
@Excel(name = "物料ID")
private Long materialId;
/** 标准数量 */
@Excel(name = "标准数量")
private BigDecimal standardAmount;
/** 检验数量 */
@Excel(name = "检验数量")
private BigDecimal checkAmount;
public void setMaterialCheckResultId(Long materialCheckResultId)
{
this.materialCheckResultId = materialCheckResultId;
}
public Long getMaterialCheckResultId()
{
return materialCheckResultId;
}
public void setPlanId(Long planId)
{
this.planId = planId;
}
public Long getPlanId()
{
return planId;
}
public void setPlanDetailId(Long planDetailId)
{
this.planDetailId = planDetailId;
}
public Long getPlanDetailId()
{
return planDetailId;
}
public void setMaterialId(Long materialId)
{
this.materialId = materialId;
}
public Long getMaterialId()
{
return materialId;
}
public void setStandardAmount(BigDecimal standardAmount)
{
this.standardAmount = standardAmount;
}
public BigDecimal getStandardAmount()
{
return standardAmount;
}
public void setCheckAmount(BigDecimal checkAmount)
{
this.checkAmount = checkAmount;
}
public BigDecimal getCheckAmount()
{
return checkAmount;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("materialCheckResultId", getMaterialCheckResultId())
.append("planId", getPlanId())
.append("planDetailId", getPlanDetailId())
.append("materialId", getMaterialId())
.append("standardAmount", getStandardAmount())
.append("checkAmount", getCheckAmount())
.append("updateBy", getUpdateBy())
.append("updateTime", getUpdateTime())
.toString();
}
}

@ -0,0 +1,378 @@
package com.hw.mes.domain;
import java.math.BigDecimal;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.hw.common.core.annotation.Excel;
import com.hw.common.core.web.domain.BaseEntity;
/**
* mes_product_order
*
* @author Yinq
* @date 2024-02-20
*/
public class MesProductOrder extends BaseEntity {
private static final long serialVersionUID = 1L;
/**
*
*/
private Long productOrderId;
/**
*
*/
@Excel(name = "工单编号")
private String orderCode;
/**
* ID,mes_sale_orderorder_id;
*/
@Excel(name = "销售订单ID")
private Long saleOrderId;
/**
*
*/
@Excel(name = "销售订单编号")
private String saleorderCode;
/**
*
*/
@Excel(name = "销售订单行号")
private String saleorderLinenumber;
/**
*
*/
@Excel(name = "项目编号")
private String projectNo;
/**
* ID,mes_base_material_infomaterial_id;
*/
@Excel(name = "物料ID")
private Long materialId;
/**
* bomIDmes_material_bommaterial_bom_id;bom
*/
@Excel(name = "物料bomID")
private Long materialBomId;
/**
* (1线 2线)
*/
@Excel(name = "派工类型")
private String dispatchType;
/**
* ID线线线线
*/
@Excel(name = "派工ID")
private Long dispatchId;
/**
* ;
*/
@Excel(name = "销售数量")
private BigDecimal saleAmount;
/**
*
*/
@Excel(name = "计划数量")
private BigDecimal planAmount;
/**
* ;线线
*/
@Excel(name = "已派工数量")
private BigDecimal dispatchAmount;
/**
*
*/
@Excel(name = "完成数量")
private BigDecimal completeAmount;
/**
*
*/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@Excel(name = "发布时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
private Date releaseTime;
/**
*
*/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@Excel(name = "计划开始时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
private Date planBeginTime;
/**
*
*/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@Excel(name = "计划结束时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
private Date planEndTime;
/**
*
*/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@Excel(name = "开始时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
private Date realBeginTime;
/**
*
*/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@Excel(name = "完成时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
private Date realEndTime;
/**
*
*/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@Excel(name = "计划交货日期", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
private Date planDeliveryDate;
/**
* 0-1-2-3-4-8-9-
*/
@Excel(name = "工单状态")
private String orderStatus;
/**
* 1-0-
*/
@Excel(name = "库存锁定标识")
private String stockLockFlag;
/**
* 1=;0=
*/
private String saleOrderFlag;
public Date getPlanDeliveryDate() {
return planDeliveryDate;
}
public void setPlanDeliveryDate(Date planDeliveryDate) {
this.planDeliveryDate = planDeliveryDate;
}
public String getSaleOrderFlag() {
return saleOrderFlag;
}
public void setSaleOrderFlag(String saleOrderFlag) {
this.saleOrderFlag = saleOrderFlag;
}
public void setProductOrderId(Long productOrderId) {
this.productOrderId = productOrderId;
}
public Long getProductOrderId() {
return productOrderId;
}
public void setOrderCode(String orderCode) {
this.orderCode = orderCode;
}
public String getOrderCode() {
return orderCode;
}
public void setSaleOrderId(Long saleOrderId) {
this.saleOrderId = saleOrderId;
}
public Long getSaleOrderId() {
return saleOrderId;
}
public void setSaleorderCode(String saleorderCode) {
this.saleorderCode = saleorderCode;
}
public String getSaleorderCode() {
return saleorderCode;
}
public void setSaleorderLinenumber(String saleorderLinenumber) {
this.saleorderLinenumber = saleorderLinenumber;
}
public String getSaleorderLinenumber() {
return saleorderLinenumber;
}
public void setProjectNo(String projectNo) {
this.projectNo = projectNo;
}
public String getProjectNo() {
return projectNo;
}
public void setMaterialId(Long materialId) {
this.materialId = materialId;
}
public Long getMaterialId() {
return materialId;
}
public void setMaterialBomId(Long materialBomId) {
this.materialBomId = materialBomId;
}
public Long getMaterialBomId() {
return materialBomId;
}
public void setDispatchType(String dispatchType) {
this.dispatchType = dispatchType;
}
public String getDispatchType() {
return dispatchType;
}
public void setDispatchId(Long dispatchId) {
this.dispatchId = dispatchId;
}
public Long getDispatchId() {
return dispatchId;
}
public void setSaleAmount(BigDecimal saleAmount) {
this.saleAmount = saleAmount;
}
public BigDecimal getSaleAmount() {
return saleAmount;
}
public void setPlanAmount(BigDecimal planAmount) {
this.planAmount = planAmount;
}
public BigDecimal getPlanAmount() {
return planAmount;
}
public void setDispatchAmount(BigDecimal dispatchAmount) {
this.dispatchAmount = dispatchAmount;
}
public BigDecimal getDispatchAmount() {
return dispatchAmount;
}
public void setCompleteAmount(BigDecimal completeAmount) {
this.completeAmount = completeAmount;
}
public BigDecimal getCompleteAmount() {
return completeAmount;
}
public void setReleaseTime(Date releaseTime) {
this.releaseTime = releaseTime;
}
public Date getReleaseTime() {
return releaseTime;
}
public void setPlanBeginTime(Date planBeginTime) {
this.planBeginTime = planBeginTime;
}
public Date getPlanBeginTime() {
return planBeginTime;
}
public void setPlanEndTime(Date planEndTime) {
this.planEndTime = planEndTime;
}
public Date getPlanEndTime() {
return planEndTime;
}
public void setRealBeginTime(Date realBeginTime) {
this.realBeginTime = realBeginTime;
}
public Date getRealBeginTime() {
return realBeginTime;
}
public void setRealEndTime(Date realEndTime) {
this.realEndTime = realEndTime;
}
public Date getRealEndTime() {
return realEndTime;
}
public void setOrderStatus(String orderStatus) {
this.orderStatus = orderStatus;
}
public String getOrderStatus() {
return orderStatus;
}
public void setStockLockFlag(String stockLockFlag) {
this.stockLockFlag = stockLockFlag;
}
public String getStockLockFlag() {
return stockLockFlag;
}
@Override
public String toString() {
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
.append("productOrderId", getProductOrderId())
.append("orderCode", getOrderCode())
.append("saleOrderId", getSaleOrderId())
.append("saleorderCode", getSaleorderCode())
.append("saleorderLinenumber", getSaleorderLinenumber())
.append("projectNo", getProjectNo())
.append("materialId", getMaterialId())
.append("materialBomId", getMaterialBomId())
.append("dispatchType", getDispatchType())
.append("dispatchId", getDispatchId())
.append("saleAmount", getSaleAmount())
.append("planAmount", getPlanAmount())
.append("dispatchAmount", getDispatchAmount())
.append("completeAmount", getCompleteAmount())
.append("releaseTime", getReleaseTime())
.append("planBeginTime", getPlanBeginTime())
.append("planEndTime", getPlanEndTime())
.append("realBeginTime", getRealBeginTime())
.append("realEndTime", getRealEndTime())
.append("orderStatus", getOrderStatus())
.append("stockLockFlag", getStockLockFlag())
.append("remark", getRemark())
.append("createBy", getCreateBy())
.append("createTime", getCreateTime())
.append("updateBy", getUpdateBy())
.append("updateTime", getUpdateTime())
.toString();
}
}

@ -0,0 +1,370 @@
package com.hw.mes.domain;
import java.math.BigDecimal;
import java.util.List;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.hw.common.core.annotation.Excel;
import com.hw.common.core.web.domain.BaseEntity;
/**
* mes_product_plan
*
* @author xins
* @date 2024-02-21
*/
public class MesProductPlan extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** 主键标识 */
private Long planId;
/** 生产工单ID */
@Excel(name = "生产工单ID")
private Long productOrderId;
/** 计划编号 */
@Excel(name = "计划编号")
private String planCode;
/** 派工单号;主要为顺序生产时,获取上一工序的派工单是否完成,每次派工生成的派工单号相同,不同次派工的派工单号不能相同 */
@Excel(name = "派工单号;主要为顺序生产时,获取上一工序的派工单是否完成,每次派工生成的派工单号相同,不同次派工的派工单号不能相同")
private String dispatchCode;
/** 物料ID */
@Excel(name = "物料ID")
private Long materialId;
/** 物料bomID关联mes_material_bom的material_bom_id */
@Excel(name = "物料bomID关联mes_material_bom的material_bom_id")
private Long materialBomId;
/** 工序ID */
@Excel(name = "工序ID")
private Long processId;
/** 顺序;派工类型是工艺路线的需要有顺序 */
@Excel(name = "顺序;派工类型是工艺路线的需要有顺序")
private Long processOrder;
/** 上一工序ID */
@Excel(name = "上一工序ID")
private Long lastProcessId;
/** 工位ID关联工位信息主键;根据选择的工序或者工艺路线拆分到工位上会拆分1到多条生产计划 */
@Excel(name = "工位ID关联工位信息主键;根据选择的工序或者工艺路线拆分到工位上会拆分1到多条生产计划")
private Long stationId;
/** 用户ID关联sys_user主键;预留,暂时不用 */
@Excel(name = "用户ID关联sys_user主键;预留,暂时不用")
private Long userId;
/** 单位生产时间(单位s) */
@Excel(name = "单位生产时间(单位s)")
private Long productionTime;
/** 计划数量 */
@Excel(name = "计划数量")
private BigDecimal planAmount;
/** 完成数量 */
@Excel(name = "完成数量")
private BigDecimal completeAmount;
/** 计划开始时间 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "计划开始时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date planBeginTime;
/** 计划结束时间 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "计划结束时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date planEndTime;
/** 开始时间 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "开始时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date realBeginTime;
/** 完成时间 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "完成时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date realEndTime;
/** 附件信息,关联附件信息主键;多个用,隔开;页面可选择附件信息,也可直接上传 */
@Excel(name = "附件信息,关联附件信息主键;多个用,隔开;页面可选择附件信息,也可直接上传")
private String attachId;
/** 计划状态0-未派工1-已派工2-已开始 */
@Excel(name = "计划状态0-未派工1-已派工2-已开始3-已完成")
private String planStatus;
/** 是否标识1-是0-否 */
@Excel(name = "是否标识1-是0-否")
private String isFlag;
/**
*
*/
private Date planDeliveryDate;
/**
*
*/
private String materialName;
/** 生产计划明细信息 */
private List<MesProductPlanDetail> mesProductPlanDetailList;
public void setPlanId(Long planId)
{
this.planId = planId;
}
public Long getPlanId()
{
return planId;
}
public void setProductOrderId(Long productOrderId)
{
this.productOrderId = productOrderId;
}
public Long getProductOrderId()
{
return productOrderId;
}
public void setPlanCode(String planCode)
{
this.planCode = planCode;
}
public String getPlanCode()
{
return planCode;
}
public void setDispatchCode(String dispatchCode)
{
this.dispatchCode = dispatchCode;
}
public String getDispatchCode()
{
return dispatchCode;
}
public void setMaterialId(Long materialId)
{
this.materialId = materialId;
}
public Long getMaterialId()
{
return materialId;
}
public void setMaterialBomId(Long materialBomId)
{
this.materialBomId = materialBomId;
}
public Long getMaterialBomId()
{
return materialBomId;
}
public void setProcessId(Long processId)
{
this.processId = processId;
}
public Long getProcessId()
{
return processId;
}
public void setProcessOrder(Long processOrder)
{
this.processOrder = processOrder;
}
public Long getProcessOrder()
{
return processOrder;
}
public void setLastProcessId(Long lastProcessId)
{
this.lastProcessId = lastProcessId;
}
public Long getLastProcessId()
{
return lastProcessId;
}
public void setStationId(Long stationId)
{
this.stationId = stationId;
}
public Long getStationId()
{
return stationId;
}
public void setUserId(Long userId)
{
this.userId = userId;
}
public Long getUserId()
{
return userId;
}
public void setProductionTime(Long productionTime)
{
this.productionTime = productionTime;
}
public Long getProductionTime()
{
return productionTime;
}
public void setPlanAmount(BigDecimal planAmount)
{
this.planAmount = planAmount;
}
public BigDecimal getPlanAmount()
{
return planAmount;
}
public void setCompleteAmount(BigDecimal completeAmount)
{
this.completeAmount = completeAmount;
}
public BigDecimal getCompleteAmount()
{
return completeAmount;
}
public void setPlanBeginTime(Date planBeginTime)
{
this.planBeginTime = planBeginTime;
}
public Date getPlanBeginTime()
{
return planBeginTime;
}
public void setPlanEndTime(Date planEndTime)
{
this.planEndTime = planEndTime;
}
public Date getPlanEndTime()
{
return planEndTime;
}
public void setRealBeginTime(Date realBeginTime)
{
this.realBeginTime = realBeginTime;
}
public Date getRealBeginTime()
{
return realBeginTime;
}
public void setRealEndTime(Date realEndTime)
{
this.realEndTime = realEndTime;
}
public Date getRealEndTime()
{
return realEndTime;
}
public void setAttachId(String attachId)
{
this.attachId = attachId;
}
public String getAttachId()
{
return attachId;
}
public void setPlanStatus(String planStatus)
{
this.planStatus = planStatus;
}
public String getPlanStatus()
{
return planStatus;
}
public void setIsFlag(String isFlag)
{
this.isFlag = isFlag;
}
public String getIsFlag()
{
return isFlag;
}
public List<MesProductPlanDetail> getMesProductPlanDetailList()
{
return mesProductPlanDetailList;
}
public void setMesProductPlanDetailList(List<MesProductPlanDetail> mesProductPlanDetailList)
{
this.mesProductPlanDetailList = mesProductPlanDetailList;
}
public Date getPlanDeliveryDate() {
return planDeliveryDate;
}
public void setPlanDeliveryDate(Date planDeliveryDate) {
this.planDeliveryDate = planDeliveryDate;
}
public String getMaterialName() {
return materialName;
}
public void setMaterialName(String materialName) {
this.materialName = materialName;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("planId", getPlanId())
.append("productOrderId", getProductOrderId())
.append("planCode", getPlanCode())
.append("dispatchCode", getDispatchCode())
.append("materialId", getMaterialId())
.append("materialBomId", getMaterialBomId())
.append("processId", getProcessId())
.append("processOrder", getProcessOrder())
.append("lastProcessId", getLastProcessId())
.append("stationId", getStationId())
.append("userId", getUserId())
.append("productionTime", getProductionTime())
.append("planAmount", getPlanAmount())
.append("completeAmount", getCompleteAmount())
.append("planBeginTime", getPlanBeginTime())
.append("planEndTime", getPlanEndTime())
.append("realBeginTime", getRealBeginTime())
.append("realEndTime", getRealEndTime())
.append("attachId", getAttachId())
.append("planStatus", getPlanStatus())
.append("isFlag", getIsFlag())
.append("remark", getRemark())
.append("createBy", getCreateBy())
.append("createTime", getCreateTime())
.append("updateBy", getUpdateBy())
.append("updateTime", getUpdateTime())
.append("mesProductPlanDetailList", getMesProductPlanDetailList())
.toString();
}
}

@ -0,0 +1,172 @@
package com.hw.mes.domain;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.hw.common.core.annotation.Excel;
import com.hw.common.core.web.domain.BaseEntity;
/**
* mes_product_plan_detail
*
* @author xins
* @date 2024-02-21
*/
public class MesProductPlanDetail extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** 主键标识 */
private Long planDetailId;
/** 明细编号 */
@Excel(name = "明细编号")
private String planDetailCode;
/** 生产计划ID */
@Excel(name = "生产计划ID")
private Long planId;
/** 计划编号,关联mes_product_plan_info的plan_code */
@Excel(name = "计划编号,关联mes_product_plan_info的plan_code")
private String planCode;
/** 操作人员ID关联sys_user的user_id;如果后续一个工位有多个人,则一个明细有多个人执行,则可以保存执行记录信息,需要新增表 */
@Excel(name = "操作人员ID关联sys_user的user_id;如果后续一个工位有多个人,则一个明细有多个人执行,则可以保存执行记录信息,需要新增表")
private Long userId;
/** 操作人员名称关联sys_user的user_name */
@Excel(name = "操作人员名称关联sys_user的user_name")
private String userName;
/** 开始时间 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "开始时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date realBeginTime;
/** 完成时间 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "完成时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date realEndTime;
/** 明细状态1-未开始2-已开始3-已完成 */
@Excel(name = "明细状态1-未开始2-已开始3-已完成")
private String planDetailStatus;
/** 是否标识1-是0-否 */
@Excel(name = "是否标识1-是0-否")
private String isFlag;
public void setPlanDetailId(Long planDetailId)
{
this.planDetailId = planDetailId;
}
public Long getPlanDetailId()
{
return planDetailId;
}
public void setPlanDetailCode(String planDetailCode)
{
this.planDetailCode = planDetailCode;
}
public String getPlanDetailCode()
{
return planDetailCode;
}
public void setPlanId(Long planId)
{
this.planId = planId;
}
public Long getPlanId()
{
return planId;
}
public void setPlanCode(String planCode)
{
this.planCode = planCode;
}
public String getPlanCode()
{
return planCode;
}
public void setUserId(Long userId)
{
this.userId = userId;
}
public Long getUserId()
{
return userId;
}
public void setUserName(String userName)
{
this.userName = userName;
}
public String getUserName()
{
return userName;
}
public void setRealBeginTime(Date realBeginTime)
{
this.realBeginTime = realBeginTime;
}
public Date getRealBeginTime()
{
return realBeginTime;
}
public void setRealEndTime(Date realEndTime)
{
this.realEndTime = realEndTime;
}
public Date getRealEndTime()
{
return realEndTime;
}
public void setPlanDetailStatus(String planDetailStatus)
{
this.planDetailStatus = planDetailStatus;
}
public String getPlanDetailStatus()
{
return planDetailStatus;
}
public void setIsFlag(String isFlag)
{
this.isFlag = isFlag;
}
public String getIsFlag()
{
return isFlag;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("planDetailId", getPlanDetailId())
.append("planDetailCode", getPlanDetailCode())
.append("planId", getPlanId())
.append("planCode", getPlanCode())
.append("userId", getUserId())
.append("userName", getUserName())
.append("realBeginTime", getRealBeginTime())
.append("realEndTime", getRealEndTime())
.append("planDetailStatus", getPlanDetailStatus())
.append("isFlag", getIsFlag())
.append("remark", getRemark())
.append("createBy", getCreateBy())
.append("createTime", getCreateTime())
.append("updateBy", getUpdateBy())
.append("updateTime", getUpdateTime())
.toString();
}
}

@ -0,0 +1,34 @@
package com.hw.mes.domain.vo;
import lombok.Data;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
/**
* @Description:VO
* @ProjectName:HwMes
* @Author:xins
* @Date:2024-02-22 9:41
* @Version:1.0
*/
@Data
public class MesProductPlanDetailVo {
//生产计划ID
@NotNull(message = "生产计划ID必须输入")
private Long planId;
//成品批次
@NotNull(message = "物料ID必须输入")
private Long materialId;
//成品批次
@NotNull(message = "物料BomID必须输入")
private Long materialBomId;
//成品批次
@NotBlank(message = "计划数量必须输入")
private String planAmount;
}

@ -0,0 +1,61 @@
package com.hw.mes.mapper;
import java.util.List;
import com.hw.mes.domain.MesMaterialCheckResult;
/**
* Mapper
*
* @author xins
* @date 2024-02-21
*/
public interface MesMaterialCheckResultMapper
{
/**
*
*
* @param materialCheckResultId
* @return
*/
public MesMaterialCheckResult selectMesMaterialCheckResultByMaterialCheckResultId(Long materialCheckResultId);
/**
*
*
* @param mesMaterialCheckResult
* @return
*/
public List<MesMaterialCheckResult> selectMesMaterialCheckResultList(MesMaterialCheckResult mesMaterialCheckResult);
/**
*
*
* @param mesMaterialCheckResult
* @return
*/
public int insertMesMaterialCheckResult(MesMaterialCheckResult mesMaterialCheckResult);
/**
*
*
* @param mesMaterialCheckResult
* @return
*/
public int updateMesMaterialCheckResult(MesMaterialCheckResult mesMaterialCheckResult);
/**
*
*
* @param materialCheckResultId
* @return
*/
public int deleteMesMaterialCheckResultByMaterialCheckResultId(Long materialCheckResultId);
/**
*
*
* @param materialCheckResultIds
* @return
*/
public int deleteMesMaterialCheckResultByMaterialCheckResultIds(Long[] materialCheckResultIds);
}

@ -0,0 +1,61 @@
package com.hw.mes.mapper;
import java.util.List;
import com.hw.mes.domain.MesProductOrder;
/**
* Mapper
*
* @author Yinq
* @date 2024-02-20
*/
public interface MesProductOrderMapper
{
/**
*
*
* @param productOrderId
* @return
*/
public MesProductOrder selectMesProductOrderByProductOrderId(Long productOrderId);
/**
*
*
* @param mesProductOrder
* @return
*/
public List<MesProductOrder> selectMesProductOrderList(MesProductOrder mesProductOrder);
/**
*
*
* @param mesProductOrder
* @return
*/
public int insertMesProductOrder(MesProductOrder mesProductOrder);
/**
*
*
* @param mesProductOrder
* @return
*/
public int updateMesProductOrder(MesProductOrder mesProductOrder);
/**
*
*
* @param productOrderId
* @return
*/
public int deleteMesProductOrderByProductOrderId(Long productOrderId);
/**
*
*
* @param productOrderIds
* @return
*/
public int deleteMesProductOrderByProductOrderIds(Long[] productOrderIds);
}

@ -0,0 +1,61 @@
package com.hw.mes.mapper;
import java.util.List;
import com.hw.mes.domain.MesProductPlanDetail;
/**
* Mapper
*
* @author xins
* @date 2024-02-21
*/
public interface MesProductPlanDetailMapper
{
/**
*
*
* @param planDetailId
* @return
*/
public MesProductPlanDetail selectMesProductPlanDetailByPlanDetailId(Long planDetailId);
/**
*
*
* @param mesProductPlanDetail
* @return
*/
public List<MesProductPlanDetail> selectMesProductPlanDetailList(MesProductPlanDetail mesProductPlanDetail);
/**
*
*
* @param mesProductPlanDetail
* @return
*/
public int insertMesProductPlanDetail(MesProductPlanDetail mesProductPlanDetail);
/**
*
*
* @param mesProductPlanDetail
* @return
*/
public int updateMesProductPlanDetail(MesProductPlanDetail mesProductPlanDetail);
/**
*
*
* @param planDetailId
* @return
*/
public int deleteMesProductPlanDetailByPlanDetailId(Long planDetailId);
/**
*
*
* @param planDetailIds
* @return
*/
public int deleteMesProductPlanDetailByPlanDetailIds(Long[] planDetailIds);
}

@ -0,0 +1,97 @@
package com.hw.mes.mapper;
import java.util.List;
import com.hw.mes.domain.MesProductPlan;
import com.hw.mes.domain.MesProductPlanDetail;
/**
* Mapper
*
* @author xins
* @date 2024-02-21
*/
public interface MesProductPlanMapper
{
/**
*
*
* @param planId
* @return
*/
public MesProductPlan selectMesProductPlanByPlanId(Long planId);
/**
*
*
* @param mesProductPlan
* @return
*/
public List<MesProductPlan> selectMesProductPlanList(MesProductPlan mesProductPlan);
/**
*
*
* @param mesProductPlan
* @return
*/
public int insertMesProductPlan(MesProductPlan mesProductPlan);
/**
*
*
* @param mesProductPlan
* @return
*/
public int updateMesProductPlan(MesProductPlan mesProductPlan);
/**
*
*
* @param planId
* @return
*/
public int deleteMesProductPlanByPlanId(Long planId);
/**
*
*
* @param planIds
* @return
*/
public int deleteMesProductPlanByPlanIds(Long[] planIds);
/**
*
*
* @param planIds
* @return
*/
public int deleteMesProductPlanDetailByPlanIds(Long[] planIds);
/**
*
*
* @param mesProductPlanDetailList
* @return
*/
public int batchMesProductPlanDetail(List<MesProductPlanDetail> mesProductPlanDetailList);
/**
*
*
* @param planId ID
* @return
*/
public int deleteMesProductPlanDetailByPlanId(Long planId);
/**
* ,Join product_orderbase_material
*
* @param mesProductPlan
* @return
*/
public List<MesProductPlan> selectMesProductPlanJoinList(MesProductPlan mesProductPlan);
}

@ -67,4 +67,11 @@ public interface IMesMaterialBomService
* @return BOM
*/
public List<MesMaterialBom> selectMesMaterialBomJoinList(MesMaterialBom mesMaterialBom);
/**
* BOM
* @param materialId
* @return
*/
public List<MesMaterialBom> getMaterialVisionList(Long materialId);
}

@ -0,0 +1,76 @@
package com.hw.mes.service;
import java.util.List;
import com.hw.mes.domain.MesProductOrder;
/**
* Service
*
* @author Yinq
* @date 2024-02-20
*/
public interface IMesProductOrderService
{
/**
*
*
* @param productOrderId
* @return
*/
public MesProductOrder selectMesProductOrderByProductOrderId(Long productOrderId);
/**
*
*
* @param mesProductOrder
* @return
*/
public List<MesProductOrder> selectMesProductOrderList(MesProductOrder mesProductOrder);
/**
*
*
* @param mesProductOrder
* @return
*/
public int insertMesProductOrder(MesProductOrder mesProductOrder);
/**
*
*
* @param mesProductOrder
* @return
*/
public int updateMesProductOrder(MesProductOrder mesProductOrder);
/**
*
*
* @param productOrderIds
* @return
*/
public int deleteMesProductOrderByProductOrderIds(Long[] productOrderIds);
/**
*
*
* @param productOrderId
* @return
*/
public int deleteMesProductOrderByProductOrderId(Long productOrderId);
/**
*
* @return orderCode
*/
public String getOrderCode();
/**
*
*
* @param mesProductOrder
* @return
*/
public int productOrderLockInventory(MesProductOrder mesProductOrder);
}

@ -0,0 +1,74 @@
package com.hw.mes.service;
import java.util.List;
import com.hw.mes.domain.MesProductPlanDetail;
import com.hw.mes.domain.vo.MesProductPlanDetailVo;
/**
* Service
*
* @author xins
* @date 2024-02-21
*/
public interface IMesProductPlanDetailService
{
/**
*
*
* @param planDetailId
* @return
*/
public MesProductPlanDetail selectMesProductPlanDetailByPlanDetailId(Long planDetailId);
/**
*
*
* @param mesProductPlanDetail
* @return
*/
public List<MesProductPlanDetail> selectMesProductPlanDetailList(MesProductPlanDetail mesProductPlanDetail);
/**
*
*
* @param mesProductPlanDetail
* @return
*/
public int insertMesProductPlanDetail(MesProductPlanDetail mesProductPlanDetail);
/**
*
*
* @param mesProductPlanDetail
* @return
*/
public int updateMesProductPlanDetail(MesProductPlanDetail mesProductPlanDetail);
/**
*
*
* @param planDetailIds
* @return
*/
public int deleteMesProductPlanDetailByPlanDetailIds(Long[] planDetailIds);
/**
*
*
* @param planDetailId
* @return
*/
public int deleteMesProductPlanDetailByPlanDetailId(Long planDetailId);
/**
*
*
* @param mesProductPlanDetailVo Vo
* @return
*/
public int insertMesProductPlanDetails(MesProductPlanDetailVo mesProductPlanDetailVo);
}

@ -0,0 +1,70 @@
package com.hw.mes.service;
import java.util.List;
import com.hw.mes.domain.MesProductPlan;
/**
* Service
*
* @author xins
* @date 2024-02-21
*/
public interface IMesProductPlanService
{
/**
*
*
* @param planId
* @return
*/
public MesProductPlan selectMesProductPlanByPlanId(Long planId);
/**
*
*
* @param mesProductPlan
* @return
*/
public List<MesProductPlan> selectMesProductPlanList(MesProductPlan mesProductPlan);
/**
*
*
* @param mesProductPlan
* @return
*/
public int insertMesProductPlan(MesProductPlan mesProductPlan);
/**
*
*
* @param mesProductPlan
* @return
*/
public int updateMesProductPlan(MesProductPlan mesProductPlan);
/**
*
*
* @param planIds
* @return
*/
public int deleteMesProductPlanByPlanIds(Long[] planIds);
/**
*
*
* @param planId
* @return
*/
public int deleteMesProductPlanByPlanId(Long planId);
/**
* Join product_orderbase_material
*
* @param mesProductPlan
* @return
*/
public List<MesProductPlan> selectMesProductPlanJoinList(MesProductPlan mesProductPlan);
}

@ -115,6 +115,18 @@ public class MesMaterialBomServiceImpl implements IMesMaterialBomService
return mesMaterialBomMapper.selectMesMaterialBomJoinList(mesMaterialBom);
}
/**
* BOM
* @param materialId
* @return
*/
@Override
public List<MesMaterialBom> getMaterialVisionList(Long materialId) {
MesMaterialBom materialBom = new MesMaterialBom();
materialBom.setMaterialId(materialId);
return mesMaterialBomMapper.selectMesMaterialBomList(materialBom);
}
/**
* BOM
* @param mesMaterialBom

@ -0,0 +1,159 @@
package com.hw.mes.service.impl;
import java.math.BigDecimal;
import java.util.List;
import com.hw.common.core.constant.MesConstants;
import com.hw.common.core.exception.ServiceException;
import com.hw.common.core.utils.DateUtils;
import com.hw.common.core.utils.StringUtils;
import com.hw.common.core.utils.uuid.Seq;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.hw.mes.mapper.MesProductOrderMapper;
import com.hw.mes.domain.MesProductOrder;
import com.hw.mes.service.IMesProductOrderService;
/**
* Service
*
* @author Yinq
* @date 2024-02-20
*/
@Service
public class MesProductOrderServiceImpl implements IMesProductOrderService {
@Autowired
private MesProductOrderMapper mesProductOrderMapper;
/**
*
*
* @param productOrderId
* @return
*/
@Override
public MesProductOrder selectMesProductOrderByProductOrderId(Long productOrderId) {
return mesProductOrderMapper.selectMesProductOrderByProductOrderId(productOrderId);
}
/**
*
*
* @param mesProductOrder
* @return
*/
@Override
public List<MesProductOrder> selectMesProductOrderList(MesProductOrder mesProductOrder) {
return mesProductOrderMapper.selectMesProductOrderList(mesProductOrder);
}
/**
*
*
* @param mesProductOrder
* @return
*/
@Override
public int insertMesProductOrder(MesProductOrder mesProductOrder) {
mesProductOrder.setCreateTime(DateUtils.getNowDate());
//校验是否超出销售数量
if (mesProductOrder.getSaleOrderFlag().equals("1") && StringUtils.isNotNull(mesProductOrder.getSaleOrderId())) {
checkSalesQuantity(mesProductOrder);
}
return mesProductOrderMapper.insertMesProductOrder(mesProductOrder);
}
/**
*
*
* @param mesProductOrder
* @return
*/
@Override
public int updateMesProductOrder(MesProductOrder mesProductOrder) {
mesProductOrder.setUpdateTime(DateUtils.getNowDate());
return mesProductOrderMapper.updateMesProductOrder(mesProductOrder);
}
/**
*
*
* @param productOrderIds
* @return
*/
@Override
public int deleteMesProductOrderByProductOrderIds(Long[] productOrderIds) {
for (Long productOrderId : productOrderIds) {
MesProductOrder mesProductOrder = new MesProductOrder();
mesProductOrder.setProductOrderId(productOrderId);
mesProductOrder.setOrderStatus(MesConstants.DELETE);
mesProductOrderMapper.updateMesProductOrder(mesProductOrder);
}
return 1;
}
/**
*
*
* @param productOrderId
* @return
*/
@Override
public int deleteMesProductOrderByProductOrderId(Long productOrderId) {
MesProductOrder mesProductOrder = new MesProductOrder();
mesProductOrder.setProductOrderId(productOrderId);
mesProductOrder.setOrderStatus(MesConstants.DELETE);
return mesProductOrderMapper.updateMesProductOrder(mesProductOrder);
}
/**
*
*
* @return orderCode
*/
@Override
public String getOrderCode() {
return Seq.getId(Seq.orderCodeSeqType, Seq.orderCodeCode);
}
/**
*
*
* @param mesProductOrder
*/
private void checkSalesQuantity(MesProductOrder mesProductOrder) {
if (StringUtils.isNull(mesProductOrder.getPlanAmount()) || StringUtils.isNull(mesProductOrder.getSaleAmount())) {
return;
}
MesProductOrder productOrder = new MesProductOrder();
mesProductOrder.setSaleOrderId(mesProductOrder.getSaleOrderId());
List<MesProductOrder> mesProductOrders = mesProductOrderMapper.selectMesProductOrderList(productOrder);
BigDecimal sumDecimal = new BigDecimal(0);
if (StringUtils.isNotNull(mesProductOrders)) {
for (MesProductOrder order : mesProductOrders) {
sumDecimal = sumDecimal.add(order.getPlanAmount());
}
}
sumDecimal = sumDecimal.add(mesProductOrder.getPlanAmount());
if (mesProductOrder.getSaleAmount().compareTo(sumDecimal) < 0) {
throw new ServiceException("当前工单计划数量为:" + sumDecimal.longValue() + ",超出该订单销售数量!");
}
}
/**
*
*
* @param mesProductOrder
* @return
*/
@Override
public int productOrderLockInventory(MesProductOrder mesProductOrder) {
MesProductOrder productOrder = mesProductOrderMapper.selectMesProductOrderByProductOrderId(mesProductOrder.getProductOrderId());
if (productOrder.getStockLockFlag().equals("1")) {
throw new ServiceException("该工单库存已锁定!");
}
mesProductOrder.setUpdateTime(DateUtils.getNowDate());
return mesProductOrderMapper.updateMesProductOrder(mesProductOrder);
}
}

@ -0,0 +1,116 @@
package com.hw.mes.service.impl;
import java.util.List;
import com.hw.common.core.utils.DateUtils;
import com.hw.mes.domain.vo.MesProductPlanDetailVo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.hw.mes.mapper.MesProductPlanDetailMapper;
import com.hw.mes.domain.MesProductPlanDetail;
import com.hw.mes.service.IMesProductPlanDetailService;
/**
* Service
*
* @author xins
* @date 2024-02-21
*/
@Service
public class MesProductPlanDetailServiceImpl implements IMesProductPlanDetailService
{
@Autowired
private MesProductPlanDetailMapper mesProductPlanDetailMapper;
/**
*
*
* @param planDetailId
* @return
*/
@Override
public MesProductPlanDetail selectMesProductPlanDetailByPlanDetailId(Long planDetailId)
{
return mesProductPlanDetailMapper.selectMesProductPlanDetailByPlanDetailId(planDetailId);
}
/**
*
*
* @param mesProductPlanDetail
* @return
*/
@Override
public List<MesProductPlanDetail> selectMesProductPlanDetailList(MesProductPlanDetail mesProductPlanDetail)
{
return mesProductPlanDetailMapper.selectMesProductPlanDetailList(mesProductPlanDetail);
}
/**
*
*
* @param mesProductPlanDetail
* @return
*/
@Override
public int insertMesProductPlanDetail(MesProductPlanDetail mesProductPlanDetail)
{
mesProductPlanDetail.setCreateTime(DateUtils.getNowDate());
return mesProductPlanDetailMapper.insertMesProductPlanDetail(mesProductPlanDetail);
}
/**
*
*
* @param mesProductPlanDetail
* @return
*/
@Override
public int updateMesProductPlanDetail(MesProductPlanDetail mesProductPlanDetail)
{
mesProductPlanDetail.setUpdateTime(DateUtils.getNowDate());
return mesProductPlanDetailMapper.updateMesProductPlanDetail(mesProductPlanDetail);
}
/**
*
*
* @param planDetailIds
* @return
*/
@Override
public int deleteMesProductPlanDetailByPlanDetailIds(Long[] planDetailIds)
{
return mesProductPlanDetailMapper.deleteMesProductPlanDetailByPlanDetailIds(planDetailIds);
}
/**
*
*
* @param planDetailId
* @return
*/
@Override
public int deleteMesProductPlanDetailByPlanDetailId(Long planDetailId)
{
return mesProductPlanDetailMapper.deleteMesProductPlanDetailByPlanDetailId(planDetailId);
}
/**
*
*
* @param mesProductPlanDetailVo Vo
* @return
*/
@Override
public int insertMesProductPlanDetails(MesProductPlanDetailVo mesProductPlanDetailVo)
{
// mesProductPlanDetail.setCreateTime(DateUtils.getNowDate());
// return mesProductPlanDetailMapper.insertMesProductPlanDetail(mesProductPlanDetail);
// MesProductPlan mesProductPlan
return 1;
}
}

@ -0,0 +1,156 @@
package com.hw.mes.service.impl;
import java.util.List;
import com.hw.common.core.utils.DateUtils;
import com.hw.common.security.utils.SecurityUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.ArrayList;
import com.hw.common.core.utils.StringUtils;
import org.springframework.transaction.annotation.Transactional;
import com.hw.mes.domain.MesProductPlanDetail;
import com.hw.mes.mapper.MesProductPlanMapper;
import com.hw.mes.domain.MesProductPlan;
import com.hw.mes.service.IMesProductPlanService;
/**
* Service
*
* @author xins
* @date 2024-02-21
*/
@Service
public class MesProductPlanServiceImpl implements IMesProductPlanService
{
@Autowired
private MesProductPlanMapper mesProductPlanMapper;
/**
*
*
* @param planId
* @return
*/
@Override
public MesProductPlan selectMesProductPlanByPlanId(Long planId)
{
return mesProductPlanMapper.selectMesProductPlanByPlanId(planId);
}
/**
*
*
* @param mesProductPlan
* @return
*/
@Override
public List<MesProductPlan> selectMesProductPlanList(MesProductPlan mesProductPlan)
{
return mesProductPlanMapper.selectMesProductPlanList(mesProductPlan);
}
/**
*
*
* @param mesProductPlan
* @return
*/
@Transactional
@Override
public int insertMesProductPlan(MesProductPlan mesProductPlan)
{
mesProductPlan.setCreateTime(DateUtils.getNowDate());
int rows = mesProductPlanMapper.insertMesProductPlan(mesProductPlan);
insertMesProductPlanDetail(mesProductPlan);
return rows;
}
/**
*
*
* @param mesProductPlan
* @return
*/
@Transactional
@Override
public int updateMesProductPlan(MesProductPlan mesProductPlan)
{
mesProductPlan.setUpdateTime(DateUtils.getNowDate());
mesProductPlanMapper.deleteMesProductPlanDetailByPlanId(mesProductPlan.getPlanId());
insertMesProductPlanDetail(mesProductPlan);
return mesProductPlanMapper.updateMesProductPlan(mesProductPlan);
}
/**
*
*
* @param planIds
* @return
*/
@Transactional
@Override
public int deleteMesProductPlanByPlanIds(Long[] planIds)
{
mesProductPlanMapper.deleteMesProductPlanDetailByPlanIds(planIds);
return mesProductPlanMapper.deleteMesProductPlanByPlanIds(planIds);
}
/**
*
*
* @param planId
* @return
*/
@Transactional
@Override
public int deleteMesProductPlanByPlanId(Long planId)
{
mesProductPlanMapper.deleteMesProductPlanDetailByPlanId(planId);
return mesProductPlanMapper.deleteMesProductPlanByPlanId(planId);
}
/**
*
*
* @param mesProductPlan
*/
public void insertMesProductPlanDetail(MesProductPlan mesProductPlan)
{
List<MesProductPlanDetail> mesProductPlanDetailList = mesProductPlan.getMesProductPlanDetailList();
Long planId = mesProductPlan.getPlanId();
if (StringUtils.isNotNull(mesProductPlanDetailList))
{
List<MesProductPlanDetail> list = new ArrayList<MesProductPlanDetail>();
for (MesProductPlanDetail mesProductPlanDetail : mesProductPlanDetailList)
{
mesProductPlanDetail.setPlanId(planId);
list.add(mesProductPlanDetail);
}
if (list.size() > 0)
{
mesProductPlanMapper.batchMesProductPlanDetail(list);
}
}
}
/**
* Join product_orderbase_material
*
* @param mesProductPlan
* @return
*/
@Override
public List<MesProductPlan> selectMesProductPlanJoinList(MesProductPlan mesProductPlan)
{
Long stationId = SecurityUtils.getStationd();
System.out.println("stationId: " + stationId);
return mesProductPlanMapper.selectMesProductPlanJoinList(mesProductPlan);
}
}

@ -22,6 +22,7 @@
<result property="updateTime" column="update_time"/>
<result property="materialCode" column="material_code"/>
<result property="materialBomDesc" column="material_bom_desc"/>
<result property="materialNameDesc" column="materialNameDesc"/>
</resultMap>
<sql id="selectMesMaterialBomVo">
@ -40,7 +41,8 @@
create_by,
create_time,
update_by,
update_time
update_time,
CONCAT(material_name, '-', material_bom_desc) materialNameDesc
from mes_material_bom
</sql>
@ -60,6 +62,7 @@
<if test="projectId != null ">and project_id = #{projectId}</if>
<if test="activeFlag != null and activeFlag != ''">and active_flag = #{activeFlag}</if>
</where>
order by material_id, create_time desc
</select>
<select id="selectMesMaterialBomByMaterialBomId" parameterType="Long" resultMap="MesMaterialBomResult">

@ -0,0 +1,84 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.hw.mes.mapper.MesMaterialCheckResultMapper">
<resultMap type="MesMaterialCheckResult" id="MesMaterialCheckResultResult">
<result property="materialCheckResultId" column="material_check_result_id" />
<result property="planId" column="plan_id" />
<result property="planDetailId" column="plan_detail_id" />
<result property="materialId" column="material_id" />
<result property="standardAmount" column="standard_amount" />
<result property="checkAmount" column="check_amount" />
<result property="updateBy" column="update_by" />
<result property="updateTime" column="update_time" />
</resultMap>
<sql id="selectMesMaterialCheckResultVo">
select material_check_result_id, plan_id, plan_detail_id, material_id, standard_amount, check_amount, update_by, update_time from mes_material_check_result
</sql>
<select id="selectMesMaterialCheckResultList" parameterType="MesMaterialCheckResult" resultMap="MesMaterialCheckResultResult">
<include refid="selectMesMaterialCheckResultVo"/>
<where>
<if test="planId != null "> and plan_id = #{planId}</if>
<if test="planDetailId != null "> and plan_detail_id = #{planDetailId}</if>
<if test="materialId != null "> and material_id = #{materialId}</if>
<if test="standardAmount != null "> and standard_amount = #{standardAmount}</if>
<if test="checkAmount != null "> and check_amount = #{checkAmount}</if>
</where>
</select>
<select id="selectMesMaterialCheckResultByMaterialCheckResultId" parameterType="Long" resultMap="MesMaterialCheckResultResult">
<include refid="selectMesMaterialCheckResultVo"/>
where material_check_result_id = #{materialCheckResultId}
</select>
<insert id="insertMesMaterialCheckResult" parameterType="MesMaterialCheckResult" useGeneratedKeys="true" keyProperty="materialCheckResultId">
insert into mes_material_check_result
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="planId != null">plan_id,</if>
<if test="planDetailId != null">plan_detail_id,</if>
<if test="materialId != null">material_id,</if>
<if test="standardAmount != null">standard_amount,</if>
<if test="checkAmount != null">check_amount,</if>
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="planId != null">#{planId},</if>
<if test="planDetailId != null">#{planDetailId},</if>
<if test="materialId != null">#{materialId},</if>
<if test="standardAmount != null">#{standardAmount},</if>
<if test="checkAmount != null">#{checkAmount},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
</trim>
</insert>
<update id="updateMesMaterialCheckResult" parameterType="MesMaterialCheckResult">
update mes_material_check_result
<trim prefix="SET" suffixOverrides=",">
<if test="planId != null">plan_id = #{planId},</if>
<if test="planDetailId != null">plan_detail_id = #{planDetailId},</if>
<if test="materialId != null">material_id = #{materialId},</if>
<if test="standardAmount != null">standard_amount = #{standardAmount},</if>
<if test="checkAmount != null">check_amount = #{checkAmount},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
</trim>
where material_check_result_id = #{materialCheckResultId}
</update>
<delete id="deleteMesMaterialCheckResultByMaterialCheckResultId" parameterType="Long">
delete from mes_material_check_result where material_check_result_id = #{materialCheckResultId}
</delete>
<delete id="deleteMesMaterialCheckResultByMaterialCheckResultIds" parameterType="String">
delete from mes_material_check_result where material_check_result_id in
<foreach item="materialCheckResultId" collection="array" open="(" separator="," close=")">
#{materialCheckResultId}
</foreach>
</delete>
</mapper>

@ -0,0 +1,217 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.hw.mes.mapper.MesProductOrderMapper">
<resultMap type="MesProductOrder" id="MesProductOrderResult">
<result property="productOrderId" column="product_order_id"/>
<result property="orderCode" column="order_code"/>
<result property="saleOrderId" column="sale_order_id"/>
<result property="saleorderCode" column="saleorder_code"/>
<result property="saleorderLinenumber" column="saleorder_linenumber"/>
<result property="projectNo" column="project_no"/>
<result property="materialId" column="material_id"/>
<result property="materialBomId" column="material_bom_id"/>
<result property="dispatchType" column="dispatch_type"/>
<result property="dispatchId" column="dispatch_id"/>
<result property="saleAmount" column="sale_amount"/>
<result property="planAmount" column="plan_amount"/>
<result property="dispatchAmount" column="dispatch_amount"/>
<result property="completeAmount" column="complete_amount"/>
<result property="releaseTime" column="release_time"/>
<result property="planBeginTime" column="plan_begin_time"/>
<result property="planEndTime" column="plan_end_time"/>
<result property="realBeginTime" column="real_begin_time"/>
<result property="realEndTime" column="real_end_time"/>
<result property="orderStatus" column="order_status"/>
<result property="stockLockFlag" column="stock_lock_flag"/>
<result property="remark" column="remark"/>
<result property="createBy" column="create_by"/>
<result property="createTime" column="create_time"/>
<result property="updateBy" column="update_by"/>
<result property="updateTime" column="update_time"/>
<result property="saleOrderFlag" column="sale_order_flag"/>
<result property="planDeliveryDate" column="plan_delivery_date"/>
</resultMap>
<sql id="selectMesProductOrderVo">
select product_order_id,
order_code,
sale_order_id,
saleorder_code,
saleorder_linenumber,
project_no,
material_id,
material_bom_id,
dispatch_type,
dispatch_id,
sale_amount,
plan_amount,
dispatch_amount,
complete_amount,
release_time,
plan_begin_time,
plan_end_time,
real_begin_time,
real_end_time,
order_status,
stock_lock_flag,
sale_order_flag,
plan_delivery_date,
remark,
create_by,
create_time,
update_by,
update_time
from mes_product_order
</sql>
<select id="selectMesProductOrderList" parameterType="MesProductOrder" resultMap="MesProductOrderResult">
<include refid="selectMesProductOrderVo"/>
<where>
<if test="orderCode != null and orderCode != ''">and order_code = #{orderCode}</if>
<if test="saleOrderId != null ">and sale_order_id = #{saleOrderId}</if>
<if test="saleorderCode != null and saleorderCode != ''">and saleorder_code = #{saleorderCode}</if>
<if test="saleorderLinenumber != null and saleorderLinenumber != ''">and saleorder_linenumber =
#{saleorderLinenumber}
</if>
<if test="projectNo != null and projectNo != ''">and project_no = #{projectNo}</if>
<if test="materialId != null ">and material_id = #{materialId}</if>
<if test="materialBomId != null ">and material_bom_id = #{materialBomId}</if>
<if test="dispatchType != null and dispatchType != ''">and dispatch_type = #{dispatchType}</if>
<if test="dispatchId != null ">and dispatch_id = #{dispatchId}</if>
<if test="saleAmount != null ">and sale_amount = #{saleAmount}</if>
<if test="planAmount != null ">and plan_amount = #{planAmount}</if>
<if test="dispatchAmount != null ">and dispatch_amount = #{dispatchAmount}</if>
<if test="completeAmount != null ">and complete_amount = #{completeAmount}</if>
<if test="releaseTime != null ">and release_time = #{releaseTime}</if>
<if test="planBeginTime != null ">and plan_begin_time = #{planBeginTime}</if>
<if test="planEndTime != null ">and plan_end_time = #{planEndTime}</if>
<if test="realBeginTime != null ">and real_begin_time = #{realBeginTime}</if>
<if test="realEndTime != null ">and real_end_time = #{realEndTime}</if>
<if test="orderStatus != null and orderStatus != ''">and order_status = #{orderStatus}</if>
<if test="stockLockFlag != null and stockLockFlag != ''">and stock_lock_flag = #{stockLockFlag}</if>
<if test="saleOrderFlag != null and saleOrderFlag != ''">and sale_order_flag = #{saleOrderFlag}</if>
<if test="createBy != null and createBy != ''">and create_by = #{createBy}</if>
<if test="createTime != null ">and create_time = #{createTime}</if>
<if test="updateBy != null and updateBy != ''">and update_by = #{updateBy}</if>
<if test="updateTime != null ">and update_time = #{updateTime}</if>
</where>
</select>
<select id="selectMesProductOrderByProductOrderId" parameterType="Long" resultMap="MesProductOrderResult">
<include refid="selectMesProductOrderVo"/>
where product_order_id = #{productOrderId}
</select>
<insert id="insertMesProductOrder" parameterType="MesProductOrder" useGeneratedKeys="true"
keyProperty="productOrderId">
insert into mes_product_order
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="orderCode != null and orderCode != ''">order_code,</if>
<if test="saleOrderId != null">sale_order_id,</if>
<if test="saleorderCode != null and saleorderCode != ''">saleorder_code,</if>
<if test="saleorderLinenumber != null">saleorder_linenumber,</if>
<if test="projectNo != null">project_no,</if>
<if test="materialId != null">material_id,</if>
<if test="materialBomId != null">material_bom_id,</if>
<if test="dispatchType != null and dispatchType != ''">dispatch_type,</if>
<if test="dispatchId != null">dispatch_id,</if>
<if test="saleAmount != null">sale_amount,</if>
<if test="planAmount != null">plan_amount,</if>
<if test="dispatchAmount != null">dispatch_amount,</if>
<if test="completeAmount != null">complete_amount,</if>
<if test="releaseTime != null">release_time,</if>
<if test="planBeginTime != null">plan_begin_time,</if>
<if test="planEndTime != null">plan_end_time,</if>
<if test="realBeginTime != null">real_begin_time,</if>
<if test="realEndTime != null">real_end_time,</if>
<if test="orderStatus != null and orderStatus != ''">order_status,</if>
<if test="stockLockFlag != null and stockLockFlag != ''">stock_lock_flag,</if>
<if test="saleOrderFlag != null and saleOrderFlag != ''">sale_order_flag,</if>
<if test="remark != null">remark,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
<if test="planDeliveryDate != null">plan_delivery_date,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="orderCode != null and orderCode != ''">#{orderCode},</if>
<if test="saleOrderId != null">#{saleOrderId},</if>
<if test="saleorderCode != null and saleorderCode != ''">#{saleorderCode},</if>
<if test="saleorderLinenumber != null">#{saleorderLinenumber},</if>
<if test="projectNo != null">#{projectNo},</if>
<if test="materialId != null">#{materialId},</if>
<if test="materialBomId != null">#{materialBomId},</if>
<if test="dispatchType != null and dispatchType != ''">#{dispatchType},</if>
<if test="dispatchId != null">#{dispatchId},</if>
<if test="saleAmount != null">#{saleAmount},</if>
<if test="planAmount != null">#{planAmount},</if>
<if test="dispatchAmount != null">#{dispatchAmount},</if>
<if test="completeAmount != null">#{completeAmount},</if>
<if test="releaseTime != null">#{releaseTime},</if>
<if test="planBeginTime != null">#{planBeginTime},</if>
<if test="planEndTime != null">#{planEndTime},</if>
<if test="realBeginTime != null">#{realBeginTime},</if>
<if test="realEndTime != null">#{realEndTime},</if>
<if test="orderStatus != null and orderStatus != ''">#{orderStatus},</if>
<if test="stockLockFlag != null and stockLockFlag != ''">#{stockLockFlag},</if>
<if test="saleOrderFlag != null and saleOrderFlag != ''">#{saleOrderFlag},</if>
<if test="remark != null">#{remark},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
<if test="planDeliveryDate != null">#{planDeliveryDate},</if>
</trim>
</insert>
<update id="updateMesProductOrder" parameterType="MesProductOrder">
update mes_product_order
<trim prefix="SET" suffixOverrides=",">
<if test="orderCode != null and orderCode != ''">order_code = #{orderCode},</if>
<if test="saleOrderId != null">sale_order_id = #{saleOrderId},</if>
<if test="saleorderCode != null and saleorderCode != ''">saleorder_code = #{saleorderCode},</if>
<if test="saleorderLinenumber != null">saleorder_linenumber = #{saleorderLinenumber},</if>
<if test="projectNo != null">project_no = #{projectNo},</if>
<if test="materialId != null">material_id = #{materialId},</if>
<if test="materialBomId != null">material_bom_id = #{materialBomId},</if>
<if test="dispatchType != null and dispatchType != ''">dispatch_type = #{dispatchType},</if>
<if test="dispatchId != null">dispatch_id = #{dispatchId},</if>
<if test="saleAmount != null">sale_amount = #{saleAmount},</if>
<if test="planAmount != null">plan_amount = #{planAmount},</if>
<if test="dispatchAmount != null">dispatch_amount = #{dispatchAmount},</if>
<if test="completeAmount != null">complete_amount = #{completeAmount},</if>
<if test="releaseTime != null">release_time = #{releaseTime},</if>
<if test="planBeginTime != null">plan_begin_time = #{planBeginTime},</if>
<if test="planEndTime != null">plan_end_time = #{planEndTime},</if>
<if test="realBeginTime != null">real_begin_time = #{realBeginTime},</if>
<if test="realEndTime != null">real_end_time = #{realEndTime},</if>
<if test="orderStatus != null and orderStatus != ''">order_status = #{orderStatus},</if>
<if test="stockLockFlag != null and stockLockFlag != ''">stock_lock_flag = #{stockLockFlag},</if>
<if test="saleOrderFlag != null and saleOrderFlag != ''">sale_order_flag = #{saleOrderFlag},</if>
<if test="remark != null">remark = #{remark},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="planDeliveryDate != null">plan_delivery_date = #{planDeliveryDate},</if>
</trim>
where product_order_id = #{productOrderId}
</update>
<delete id="deleteMesProductOrderByProductOrderId" parameterType="Long">
delete
from mes_product_order
where product_order_id = #{productOrderId}
</delete>
<delete id="deleteMesProductOrderByProductOrderIds" parameterType="String">
delete from mes_product_order where product_order_id in
<foreach item="productOrderId" collection="array" open="(" separator="," close=")">
#{productOrderId}
</foreach>
</delete>
</mapper>

@ -0,0 +1,116 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.hw.mes.mapper.MesProductPlanDetailMapper">
<resultMap type="MesProductPlanDetail" id="MesProductPlanDetailResult">
<result property="planDetailId" column="plan_detail_id" />
<result property="planDetailCode" column="plan_detail_code" />
<result property="planId" column="plan_id" />
<result property="planCode" column="plan_code" />
<result property="userId" column="user_id" />
<result property="userName" column="user_name" />
<result property="realBeginTime" column="real_begin_time" />
<result property="realEndTime" column="real_end_time" />
<result property="planDetailStatus" column="plan_detail_status" />
<result property="isFlag" column="is_flag" />
<result property="remark" column="remark" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="updateBy" column="update_by" />
<result property="updateTime" column="update_time" />
</resultMap>
<sql id="selectMesProductPlanDetailVo">
select plan_detail_id, plan_detail_code, plan_id, plan_code, user_id, user_name, real_begin_time, real_end_time, plan_detail_status, is_flag, remark, create_by, create_time, update_by, update_time from mes_product_plan_detail
</sql>
<select id="selectMesProductPlanDetailList" parameterType="MesProductPlanDetail" resultMap="MesProductPlanDetailResult">
<include refid="selectMesProductPlanDetailVo"/>
<where>
<if test="planDetailCode != null and planDetailCode != ''"> and plan_detail_code = #{planDetailCode}</if>
<if test="planId != null "> and plan_id = #{planId}</if>
<if test="planCode != null and planCode != ''"> and plan_code = #{planCode}</if>
<if test="userId != null "> and user_id = #{userId}</if>
<if test="userName != null and userName != ''"> and user_name like concat('%', #{userName}, '%')</if>
<if test="realBeginTime != null "> and real_begin_time = #{realBeginTime}</if>
<if test="realEndTime != null "> and real_end_time = #{realEndTime}</if>
<if test="planDetailStatus != null and planDetailStatus != ''"> and plan_detail_status = #{planDetailStatus}</if>
<if test="isFlag != null and isFlag != ''"> and is_flag = #{isFlag}</if>
</where>
</select>
<select id="selectMesProductPlanDetailByPlanDetailId" parameterType="Long" resultMap="MesProductPlanDetailResult">
<include refid="selectMesProductPlanDetailVo"/>
where plan_detail_id = #{planDetailId}
</select>
<insert id="insertMesProductPlanDetail" parameterType="MesProductPlanDetail" useGeneratedKeys="true" keyProperty="planDetailId">
insert into mes_product_plan_detail
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="planDetailCode != null and planDetailCode != ''">plan_detail_code,</if>
<if test="planId != null">plan_id,</if>
<if test="planCode != null and planCode != ''">plan_code,</if>
<if test="userId != null">user_id,</if>
<if test="userName != null">user_name,</if>
<if test="realBeginTime != null">real_begin_time,</if>
<if test="realEndTime != null">real_end_time,</if>
<if test="planDetailStatus != null and planDetailStatus != ''">plan_detail_status,</if>
<if test="isFlag != null and isFlag != ''">is_flag,</if>
<if test="remark != null">remark,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="planDetailCode != null and planDetailCode != ''">#{planDetailCode},</if>
<if test="planId != null">#{planId},</if>
<if test="planCode != null and planCode != ''">#{planCode},</if>
<if test="userId != null">#{userId},</if>
<if test="userName != null">#{userName},</if>
<if test="realBeginTime != null">#{realBeginTime},</if>
<if test="realEndTime != null">#{realEndTime},</if>
<if test="planDetailStatus != null and planDetailStatus != ''">#{planDetailStatus},</if>
<if test="isFlag != null and isFlag != ''">#{isFlag},</if>
<if test="remark != null">#{remark},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
</trim>
</insert>
<update id="updateMesProductPlanDetail" parameterType="MesProductPlanDetail">
update mes_product_plan_detail
<trim prefix="SET" suffixOverrides=",">
<if test="planDetailCode != null and planDetailCode != ''">plan_detail_code = #{planDetailCode},</if>
<if test="planId != null">plan_id = #{planId},</if>
<if test="planCode != null and planCode != ''">plan_code = #{planCode},</if>
<if test="userId != null">user_id = #{userId},</if>
<if test="userName != null">user_name = #{userName},</if>
<if test="realBeginTime != null">real_begin_time = #{realBeginTime},</if>
<if test="realEndTime != null">real_end_time = #{realEndTime},</if>
<if test="planDetailStatus != null and planDetailStatus != ''">plan_detail_status = #{planDetailStatus},</if>
<if test="isFlag != null and isFlag != ''">is_flag = #{isFlag},</if>
<if test="remark != null">remark = #{remark},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
</trim>
where plan_detail_id = #{planDetailId}
</update>
<delete id="deleteMesProductPlanDetailByPlanDetailId" parameterType="Long">
delete from mes_product_plan_detail where plan_detail_id = #{planDetailId}
</delete>
<delete id="deleteMesProductPlanDetailByPlanDetailIds" parameterType="String">
delete from mes_product_plan_detail where plan_detail_id in
<foreach item="planDetailId" collection="array" open="(" separator="," close=")">
#{planDetailId}
</foreach>
</delete>
</mapper>

@ -0,0 +1,241 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.hw.mes.mapper.MesProductPlanMapper">
<resultMap type="MesProductPlan" id="MesProductPlanResult">
<result property="planId" column="plan_id" />
<result property="productOrderId" column="product_order_id" />
<result property="planCode" column="plan_code" />
<result property="dispatchCode" column="dispatch_code" />
<result property="materialId" column="material_id" />
<result property="materialBomId" column="material_bom_id" />
<result property="processId" column="process_id" />
<result property="processOrder" column="process_order" />
<result property="lastProcessId" column="last_process_id" />
<result property="stationId" column="station_id" />
<result property="userId" column="user_id" />
<result property="productionTime" column="production_time" />
<result property="planAmount" column="plan_amount" />
<result property="completeAmount" column="complete_amount" />
<result property="planBeginTime" column="plan_begin_time" />
<result property="planEndTime" column="plan_end_time" />
<result property="realBeginTime" column="real_begin_time" />
<result property="realEndTime" column="real_end_time" />
<result property="attachId" column="attach_id" />
<result property="planStatus" column="plan_status" />
<result property="isFlag" column="is_flag" />
<result property="remark" column="remark" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="updateBy" column="update_by" />
<result property="updateTime" column="update_time" />
<result property="planDeliveryDate" column="plan_delivery_date" />
<result property="materialName" column="material_name" />
</resultMap>
<resultMap id="MesProductPlanMesProductPlanDetailResult" type="MesProductPlan" extends="MesProductPlanResult">
<collection property="mesProductPlanDetailList" notNullColumn="sub_plan_detail_id" javaType="java.util.List" resultMap="MesProductPlanDetailResult" />
</resultMap>
<resultMap type="MesProductPlanDetail" id="MesProductPlanDetailResult">
<result property="planDetailId" column="sub_plan_detail_id" />
<result property="planDetailCode" column="sub_plan_detail_code" />
<result property="planId" column="sub_plan_id" />
<result property="planCode" column="sub_plan_code" />
<result property="userId" column="sub_user_id" />
<result property="userName" column="sub_user_name" />
<result property="realBeginTime" column="sub_real_begin_time" />
<result property="realEndTime" column="sub_real_end_time" />
<result property="planDetailStatus" column="sub_plan_detail_status" />
<result property="isFlag" column="sub_is_flag" />
<result property="remark" column="sub_remark" />
<result property="createBy" column="sub_create_by" />
<result property="createTime" column="sub_create_time" />
<result property="updateBy" column="sub_update_by" />
<result property="updateTime" column="sub_update_time" />
</resultMap>
<sql id="selectMesProductPlanVo">
select plan_id, product_order_id, plan_code, dispatch_code, material_id, material_bom_id, process_id, process_order, last_process_id, station_id, user_id, production_time, plan_amount, complete_amount, plan_begin_time, plan_end_time, real_begin_time, real_end_time, attach_id, plan_status, is_flag, remark, create_by, create_time, update_by, update_time from mes_product_plan
</sql>
<select id="selectMesProductPlanList" parameterType="MesProductPlan" resultMap="MesProductPlanResult">
<include refid="selectMesProductPlanVo"/>
<where>
<if test="productOrderId != null "> and product_order_id = #{productOrderId}</if>
<if test="planCode != null and planCode != ''"> and plan_code = #{planCode}</if>
<if test="dispatchCode != null and dispatchCode != ''"> and dispatch_code = #{dispatchCode}</if>
<if test="materialId != null "> and material_id = #{materialId}</if>
<if test="materialBomId != null "> and material_bom_id = #{materialBomId}</if>
<if test="processId != null "> and process_id = #{processId}</if>
<if test="processOrder != null "> and process_order = #{processOrder}</if>
<if test="lastProcessId != null "> and last_process_id = #{lastProcessId}</if>
<if test="stationId != null "> and station_id = #{stationId}</if>
<if test="userId != null "> and user_id = #{userId}</if>
<if test="productionTime != null "> and production_time = #{productionTime}</if>
<if test="planAmount != null "> and plan_amount = #{planAmount}</if>
<if test="completeAmount != null "> and complete_amount = #{completeAmount}</if>
<if test="planBeginTime != null "> and plan_begin_time = #{planBeginTime}</if>
<if test="planEndTime != null "> and plan_end_time = #{planEndTime}</if>
<if test="realBeginTime != null "> and real_begin_time = #{realBeginTime}</if>
<if test="realEndTime != null "> and real_end_time = #{realEndTime}</if>
<if test="attachId != null and attachId != ''"> and attach_id = #{attachId}</if>
<if test="planStatus != null and planStatus != ''"> and plan_status = #{planStatus}</if>
<if test="isFlag != null and isFlag != ''"> and is_flag = #{isFlag}</if>
</where>
</select>
<select id="selectMesProductPlanByPlanId" parameterType="Long" resultMap="MesProductPlanMesProductPlanDetailResult">
select a.plan_id, a.product_order_id, a.plan_code, a.dispatch_code, a.material_id, a.material_bom_id, a.process_id, a.process_order, a.last_process_id, a.station_id, a.user_id, a.production_time, a.plan_amount, a.complete_amount, a.plan_begin_time, a.plan_end_time, a.real_begin_time, a.real_end_time, a.attach_id, a.plan_status, a.is_flag, a.remark, a.create_by, a.create_time, a.update_by, a.update_time,
b.plan_detail_id as sub_plan_detail_id, b.plan_detail_code as sub_plan_detail_code, b.plan_id as sub_plan_id, b.plan_code as sub_plan_code, b.user_id as sub_user_id, b.user_name as sub_user_name, b.real_begin_time as sub_real_begin_time, b.real_end_time as sub_real_end_time, b.plan_detail_status as sub_plan_detail_status, b.is_flag as sub_is_flag, b.remark as sub_remark, b.create_by as sub_create_by, b.create_time as sub_create_time, b.update_by as sub_update_by, b.update_time as sub_update_time
from mes_product_plan a
left join mes_product_plan_detail b on b.plan_id = a.plan_id
where a.plan_id = #{planId}
</select>
<insert id="insertMesProductPlan" parameterType="MesProductPlan" useGeneratedKeys="true" keyProperty="planId">
insert into mes_product_plan
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="productOrderId != null">product_order_id,</if>
<if test="planCode != null and planCode != ''">plan_code,</if>
<if test="dispatchCode != null and dispatchCode != ''">dispatch_code,</if>
<if test="materialId != null">material_id,</if>
<if test="materialBomId != null">material_bom_id,</if>
<if test="processId != null">process_id,</if>
<if test="processOrder != null">process_order,</if>
<if test="lastProcessId != null">last_process_id,</if>
<if test="stationId != null">station_id,</if>
<if test="userId != null">user_id,</if>
<if test="productionTime != null">production_time,</if>
<if test="planAmount != null">plan_amount,</if>
<if test="completeAmount != null">complete_amount,</if>
<if test="planBeginTime != null">plan_begin_time,</if>
<if test="planEndTime != null">plan_end_time,</if>
<if test="realBeginTime != null">real_begin_time,</if>
<if test="realEndTime != null">real_end_time,</if>
<if test="attachId != null">attach_id,</if>
<if test="planStatus != null and planStatus != ''">plan_status,</if>
<if test="isFlag != null and isFlag != ''">is_flag,</if>
<if test="remark != null">remark,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="productOrderId != null">#{productOrderId},</if>
<if test="planCode != null and planCode != ''">#{planCode},</if>
<if test="dispatchCode != null and dispatchCode != ''">#{dispatchCode},</if>
<if test="materialId != null">#{materialId},</if>
<if test="materialBomId != null">#{materialBomId},</if>
<if test="processId != null">#{processId},</if>
<if test="processOrder != null">#{processOrder},</if>
<if test="lastProcessId != null">#{lastProcessId},</if>
<if test="stationId != null">#{stationId},</if>
<if test="userId != null">#{userId},</if>
<if test="productionTime != null">#{productionTime},</if>
<if test="planAmount != null">#{planAmount},</if>
<if test="completeAmount != null">#{completeAmount},</if>
<if test="planBeginTime != null">#{planBeginTime},</if>
<if test="planEndTime != null">#{planEndTime},</if>
<if test="realBeginTime != null">#{realBeginTime},</if>
<if test="realEndTime != null">#{realEndTime},</if>
<if test="attachId != null">#{attachId},</if>
<if test="planStatus != null and planStatus != ''">#{planStatus},</if>
<if test="isFlag != null and isFlag != ''">#{isFlag},</if>
<if test="remark != null">#{remark},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
</trim>
</insert>
<update id="updateMesProductPlan" parameterType="MesProductPlan">
update mes_product_plan
<trim prefix="SET" suffixOverrides=",">
<if test="productOrderId != null">product_order_id = #{productOrderId},</if>
<if test="planCode != null and planCode != ''">plan_code = #{planCode},</if>
<if test="dispatchCode != null and dispatchCode != ''">dispatch_code = #{dispatchCode},</if>
<if test="materialId != null">material_id = #{materialId},</if>
<if test="materialBomId != null">material_bom_id = #{materialBomId},</if>
<if test="processId != null">process_id = #{processId},</if>
<if test="processOrder != null">process_order = #{processOrder},</if>
<if test="lastProcessId != null">last_process_id = #{lastProcessId},</if>
<if test="stationId != null">station_id = #{stationId},</if>
<if test="userId != null">user_id = #{userId},</if>
<if test="productionTime != null">production_time = #{productionTime},</if>
<if test="planAmount != null">plan_amount = #{planAmount},</if>
<if test="completeAmount != null">complete_amount = #{completeAmount},</if>
<if test="planBeginTime != null">plan_begin_time = #{planBeginTime},</if>
<if test="planEndTime != null">plan_end_time = #{planEndTime},</if>
<if test="realBeginTime != null">real_begin_time = #{realBeginTime},</if>
<if test="realEndTime != null">real_end_time = #{realEndTime},</if>
<if test="attachId != null">attach_id = #{attachId},</if>
<if test="planStatus != null and planStatus != ''">plan_status = #{planStatus},</if>
<if test="isFlag != null and isFlag != ''">is_flag = #{isFlag},</if>
<if test="remark != null">remark = #{remark},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
</trim>
where plan_id = #{planId}
</update>
<delete id="deleteMesProductPlanByPlanId" parameterType="Long">
delete from mes_product_plan where plan_id = #{planId}
</delete>
<delete id="deleteMesProductPlanByPlanIds" parameterType="String">
delete from mes_product_plan where plan_id in
<foreach item="planId" collection="array" open="(" separator="," close=")">
#{planId}
</foreach>
</delete>
<delete id="deleteMesProductPlanDetailByPlanIds" parameterType="String">
delete from mes_product_plan_detail where plan_id in
<foreach item="planId" collection="array" open="(" separator="," close=")">
#{planId}
</foreach>
</delete>
<delete id="deleteMesProductPlanDetailByPlanId" parameterType="Long">
delete from mes_product_plan_detail where plan_id = #{planId}
</delete>
<insert id="batchMesProductPlanDetail">
insert into mes_product_plan_detail( plan_detail_id, plan_detail_code, plan_id, plan_code, user_id, user_name, real_begin_time, real_end_time, plan_detail_status, is_flag, remark, create_by, create_time, update_by, update_time) values
<foreach item="item" index="index" collection="list" separator=",">
( #{item.planDetailId}, #{item.planDetailCode}, #{item.planId}, #{item.planCode}, #{item.userId}, #{item.userName}, #{item.realBeginTime}, #{item.realEndTime}, #{item.planDetailStatus}, #{item.isFlag}, #{item.remark}, #{item.createBy}, #{item.createTime}, #{item.updateBy}, #{item.updateTime})
</foreach>
</insert>
<select id="selectMesProductPlanJoinList" parameterType="MesProductPlan" resultMap="MesProductPlanResult">
select mpp.plan_id, mpp.product_order_id, mpp.plan_code, mpp.dispatch_code, mpp.material_id, mpp.material_bom_id, mpp.process_id, mpp.process_order, mpp.last_process_id,
mpp.station_id, mpp.plan_amount, mpp.complete_amount, mpp.plan_begin_time, mpp.plan_end_time, mpp.real_begin_time, mpp.real_end_time,
mpp.attach_id, mpp.plan_status, mpo.plan_delivery_date,mbmi.material_name
from mes_product_plan mpp left join mes_product_order mpo on mpp.product_order_id = mpo.product_order_id
left join mes_base_material_info mbmi on mpp.material_id=mbmi.material_id
<where>
<if test="stationId != null "> and mpp.station_id = #{stationId}</if>
<if test="planStatus != null and planStatus != ''"> and mpp.plan_status = #{planStatus}</if>
</where>
</select>
</mapper>

@ -191,12 +191,13 @@ public class WmsMobileController extends BaseController {
* 退
*/
// @RequiresPermissions("wms:rawoutstock:list")
@PostMapping("/getAuditPassRawReturnDetails")
public TableDataInfo getAuditPassRawReturnDetails(WmsRawReturnDetail wmsRawReturnDetail) {
@GetMapping("/getAuditPassRawReturns")
public TableDataInfo getAuditPassRawReturns(WmsRawReturnDetail wmsRawReturnDetail) {
startPage();
// WmsRawReturnDetail wmsRawReturnDetail = new WmsRawReturnDetail();
// wmsRawReturnDetail.setApplyBy(request.getParameter("applyBy"));
List<WmsRawReturnDetail> list = wmsRawReturnService.selectAuditPassRawReturnDetails(wmsRawReturnDetail);
WmsRawReturn wmsRawReturn = new WmsRawReturn();
wmsRawReturn.setAuditStatus(WmsConstants.WMS_AUDIT_STATUS_PASS);
List<WmsRawReturn> list = wmsRawReturnService.selectWmsRawReturnJoinList(wmsRawReturn);
return getDataTable(list);
}
@ -368,7 +369,7 @@ public class WmsMobileController extends BaseController {
}
/**
*
*
*/
@Log(title = "成品出库明细", businessType = BusinessType.INSERT)
@PostMapping(("/confirmProductOutstockDetail"))

@ -28,15 +28,15 @@ public class WmsRawInstockVo {
@NotNull(message="数量必须输入")
private BigDecimal instockAmount;
//采购订单号
@NotBlank(message="采购订单号必须输入")
private String poNo;
//批次号必须输入
@NotBlank(message="批次号必须输入")
private String batchCode;
//数量
@NotNull(message="物料ID必须输入")
private Long materialId;
// //采购订单号
// @NotBlank(message="采购订单号必须输入")
// private String poNo;
//
// //批次号必须输入
// @NotBlank(message="批次号必须输入")
// private String batchCode;
//
// //数量
// @NotNull(message="物料ID必须输入")
// private Long materialId;
}

@ -65,6 +65,7 @@ public class WmsProductOutstockDetailServiceImpl implements IWmsProductOutstockD
/**
*
*
*
* @param wmsProductOutstockDetail
* @return

@ -165,11 +165,11 @@ public class WmsRawInstockServiceImpl implements IWmsRawInstockService {
public int insertWmsRawInstock(WmsRawInstockVo wmsRawInstockVo) {
String materialBarcode = wmsRawInstockVo.getMaterialBarcode();
// R<MesBaseBarcodeInfo> baseBarcodeInfoR = remoteMesService.getBarcode(materialBarcode, SecurityConstants.INNER);
// MesBaseBarcodeInfo baseBarcodeInfo = baseBarcodeInfoR.getData();
// if (baseBarcodeInfo == null) {
// throw new ServiceException("物料编码有误");
// }
R<MesBaseBarcodeInfo> baseBarcodeInfoR = remoteMesService.getBarcode(materialBarcode, SecurityConstants.INNER);
MesBaseBarcodeInfo baseBarcodeInfo = baseBarcodeInfoR.getData();
if (baseBarcodeInfo == null) {
throw new ServiceException("物料编码有误");
}
String locationCode = wmsRawInstockVo.getLocationCode();
WmsBaseLocation baseLocation = wmsBaseLocationMapper.selectWmsBaseLocationByLocationCode(locationCode);
@ -185,7 +185,7 @@ public class WmsRawInstockServiceImpl implements IWmsRawInstockService {
WmsRawInstock wmsRawInstock = new WmsRawInstock();
wmsRawInstock.setWarehouseId(baseLocation.getWarehouseId());
wmsRawInstock.setLocationCode(locationCode);
wmsRawInstock.setPoNo(wmsRawInstockVo.getPoNo());
wmsRawInstock.setPoNo(baseBarcodeInfo.getPoNo());
wmsRawInstock.setOperationType(WmsConstants.WMS_OPERATION_TYPE_MANUAL);
wmsRawInstock.setInstockType(WmsConstants.RAW_INSTOCK_INSTOCK_TYPE_PURCHASE);
wmsRawInstock.setExecuteStatus(WmsConstants.WMS_EXECUTE_STATUS_FINISH);
@ -198,10 +198,10 @@ public class WmsRawInstockServiceImpl implements IWmsRawInstockService {
int rows = wmsRawInstockMapper.insertWmsRawInstock(wmsRawInstock);
//插入明细
insertWmsRawInstockDetail(wmsRawInstock, wmsRawInstockVo);
insertWmsRawInstockDetail(wmsRawInstock, wmsRawInstockVo, baseBarcodeInfo);
//更新库存
updateRawStock(wmsRawInstock, wmsRawInstockVo, baseLocation, userName, currentDate);
updateRawStock(wmsRawInstock, wmsRawInstockVo, baseLocation, baseBarcodeInfo, userName, currentDate);
//todo同步erp
return rows;
@ -210,16 +210,18 @@ public class WmsRawInstockServiceImpl implements IWmsRawInstockService {
/**
* 使
*
* @param wmsRawInstock
* @param wmsRawInstockVo
* @param baseBarcodeInfo
*/
public void insertWmsRawInstockDetail(WmsRawInstock wmsRawInstock, WmsRawInstockVo wmsRawInstockVo) {
public void insertWmsRawInstockDetail(WmsRawInstock wmsRawInstock, WmsRawInstockVo wmsRawInstockVo, MesBaseBarcodeInfo baseBarcodeInfo) {
WmsRawInstockDetail wmsRawInstockDetail = new WmsRawInstockDetail();
wmsRawInstockDetail.setRawInstockId(wmsRawInstock.getRawInstockId());
wmsRawInstockDetail.setLocationCode(wmsRawInstock.getLocationCode());
wmsRawInstockDetail.setMaterialBarcode(wmsRawInstockVo.getMaterialBarcode());
wmsRawInstockDetail.setInstockBatch(wmsRawInstockVo.getBatchCode());
wmsRawInstockDetail.setMaterialId(wmsRawInstockVo.getMaterialId());
wmsRawInstockDetail.setInstockBatch(baseBarcodeInfo.getBatchCode());
wmsRawInstockDetail.setMaterialId(baseBarcodeInfo.getMaterialId());
wmsRawInstockDetail.setPoNo(wmsRawInstock.getPoNo());
wmsRawInstockDetail.setPlanAmount(wmsRawInstockVo.getInstockAmount());
wmsRawInstockDetail.setInstockAmount(wmsRawInstockVo.getInstockAmount());
@ -239,9 +241,9 @@ public class WmsRawInstockServiceImpl implements IWmsRawInstockService {
* @param userName
* @param currentDate
*/
public void updateRawStock(WmsRawInstock wmsRawInstock, WmsRawInstockVo wmsRawInstockVo, WmsBaseLocation baseLocation,
String userName, Date currentDate) {
String instockBatch = wmsRawInstockVo.getBatchCode();
public void updateRawStock(WmsRawInstock wmsRawInstock, WmsRawInstockVo wmsRawInstockVo, WmsBaseLocation baseLocation
, MesBaseBarcodeInfo baseBarcodeInfo, String userName, Date currentDate) {
String instockBatch = baseBarcodeInfo.getBatchCode();
String locationCode = wmsRawInstock.getLocationCode();
//判断此库位的数量限制,是否还能入库
@ -267,7 +269,7 @@ public class WmsRawInstockServiceImpl implements IWmsRawInstockService {
wmsRawStock.setWarehouseId(wmsRawInstock.getWarehouseId());
wmsRawStock.setLocationCode(locationCode);
wmsRawStock.setStockType(WmsConstants.RWA_STOCK_STOCK_TYPE_RAW);
wmsRawStock.setMaterialId(wmsRawInstockVo.getMaterialId());
wmsRawStock.setMaterialId(baseBarcodeInfo.getMaterialId());
wmsRawStock.setInstockBatch(instockBatch);
// wmsRawStock.setLastOutstockTime(baseBarcodeInfo.getLastOutstockDate());
// wmsRawStock.setQualityStatus(wmsRawInstockVo.getQualityStatus());

@ -96,6 +96,7 @@ public class WmsRawReturnServiceImpl implements IWmsRawReturnService {
*/
@Override
public WmsRawReturn selectWmsRawReturnByRawReturnId4Confirm(Long rawReturnId) {
//获取退库记录with退库记录明细列表
WmsRawReturn rawReturn = wmsRawReturnMapper.selectWmsRawReturnByRawReturnId(rawReturnId);
Long materialId = rawReturn.getMaterialId() == null ? 0L : rawReturn.getMaterialId();
Long productId = rawReturn.getProductId() == null ? 0L : rawReturn.getProductId();
@ -412,6 +413,7 @@ public class WmsRawReturnServiceImpl implements IWmsRawReturnService {
@Transactional(rollbackFor = Exception.class)
@Override
public int applyRawReturn(WmsRawReturn wmsRawReturn) {
//申请退库不指定库位,申请退库的多个物料生成多条退库记录
List<WmsRawReturnDetail> rawReturnDetails = wmsRawReturn.getWmsRawReturnDetailList();
//根据物料ID分组获取总申请数量
Map<Long, BigDecimal> rawReturnDetailMap = rawReturnDetails.stream()

@ -17,6 +17,14 @@ export function getMaterialBom(materialBomId) {
})
}
// 查询物料BOM版本列表
export function getMaterialVisionList(materialId) {
return request({
url: '/mes/materialBom/getMaterialVisionList/' + materialId,
method: 'get'
})
}
// 新增物料BOM信息
export function addMaterialBom(data) {
return request({

@ -0,0 +1,61 @@
import request from '@/utils/request'
// 查询生产工单列表
export function listProductOrder(query) {
return request({
url: '/mes/productOrder/list',
method: 'get',
params: query
})
}
// 查询生产工单详细
export function getProductOrder(productOrderId) {
return request({
url: '/mes/productOrder/' + productOrderId,
method: 'get'
})
}
// 获取工单编号
export function getOrderCode() {
return request({
url: '/mes/productOrder/getOrderCode',
method: 'get'
})
}
// 新增生产工单
export function addProductOrder(data) {
return request({
url: '/mes/productOrder',
method: 'post',
data: data
})
}
// 修改生产工单
export function updateProductOrder(data) {
return request({
url: '/mes/productOrder',
method: 'put',
data: data
})
}
//锁库存
export function productOrderLockInventory(data) {
return request({
url: '/mes/productOrder/productOrderLockInventory',
method: 'post',
data: data
})
}
// 删除生产工单
export function delProductOrder(productOrderId) {
return request({
url: '/mes/productOrder/' + productOrderId,
method: 'delete'
})
}

@ -0,0 +1,525 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="100px">
<el-form-item label="销售订单编号" prop="saleorderCode">
<el-input
v-model="queryParams.saleorderCode"
placeholder="请输入销售订单编号"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="单据状态" prop="documentStatus">
<el-select v-model="queryParams.documentStatus" placeholder="请选择单据状态" clearable>
<el-option
v-for="dict in dict.type.document_status"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
<!-- <el-form-item label="所属工厂" prop="factoryId">-->
<!-- <el-input-->
<!-- v-model="queryParams.factoryId"-->
<!-- placeholder="请输入所属工厂"-->
<!-- clearable-->
<!-- @keyup.enter.native="handleQuery"-->
<!-- />-->
<!-- </el-form-item>-->
<!-- <el-form-item label="所属产线" prop="prodlineId">-->
<!-- <el-input-->
<!-- v-model="queryParams.prodlineId"-->
<!-- placeholder="请输入所属产线"-->
<!-- clearable-->
<!-- @keyup.enter.native="handleQuery"-->
<!-- />-->
<!-- </el-form-item>-->
<el-form-item label="物料编码" prop="materialCode">
<el-input
v-model="queryParams.materialCode"
placeholder="请输入物料编码"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="物料名称" prop="materialName">
<el-input
v-model="queryParams.materialName"
placeholder="请输入物料名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery"></el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"></el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<!-- <el-col :span="1.5">-->
<!-- <el-button-->
<!-- type="primary"-->
<!-- plain-->
<!-- icon="el-icon-plus"-->
<!-- size="mini"-->
<!-- @click="handleAdd"-->
<!-- v-hasPermi="['mes:saleOrder:add']"-->
<!-- >新增</el-button>-->
<!-- </el-col>-->
<!-- <el-col :span="1.5">-->
<!-- <el-button-->
<!-- type="success"-->
<!-- plain-->
<!-- icon="el-icon-edit"-->
<!-- size="mini"-->
<!-- :disabled="single"-->
<!-- @click="handleUpdate"-->
<!-- v-hasPermi="['mes:saleOrder:edit']"-->
<!-- >修改</el-button>-->
<!-- </el-col>-->
<!-- <el-col :span="1.5">-->
<!-- <el-button-->
<!-- type="danger"-->
<!-- plain-->
<!-- icon="el-icon-delete"-->
<!-- size="mini"-->
<!-- :disabled="multiple"-->
<!-- @click="handleDelete"-->
<!-- v-hasPermi="['mes:saleOrder:remove']"-->
<!-- >删除</el-button>-->
<!-- </el-col>-->
<!-- <el-col :span="1.5">-->
<!-- <el-button-->
<!-- type="warning"-->
<!-- plain-->
<!-- icon="el-icon-download"-->
<!-- size="mini"-->
<!-- @click="handleExport"-->
<!-- v-hasPermi="['mes:saleOrder:export']"-->
<!-- >导出</el-button>-->
<!-- </el-col>-->
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="saleOrderList" @selection-change="handleSelectionChange"
@row-click="handleRowClick"
highlight-current-row
>
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="主键标识" align="center" prop="saleOrderId" v-if="columns[0].visible"/>
<el-table-column label="ERP主键" align="center" prop="erpId" v-if="columns[1].visible"/>
<el-table-column label="ERP订单明细ID" align="center" prop="fentryId" v-if="columns[2].visible"/>
<el-table-column label="销售订单编号" align="center" prop="saleorderCode" width="100" v-if="columns[3].visible"/>
<el-table-column label="销售订单行号" align="center" prop="saleorderLinenumber" width="110" v-if="columns[4].visible"/>
<el-table-column label="单据状态" align="center" prop="documentStatus" v-if="columns[5].visible" >
<template slot-scope="scope">
<dict-tag :options="dict.type.document_status" :value="scope.row.documentStatus"/>
</template>
</el-table-column>
<el-table-column label="所属工厂" align="center" prop="factoryId" v-if="columns[6].visible"/>
<el-table-column label="所属产线" align="center" prop="prodlineId" v-if="columns[7].visible"/>
<el-table-column label="物料ID" align="center" prop="materialId" v-if="columns[8].visible"/>
<el-table-column label="物料编码" align="center" prop="materialCode" width="100" v-if="columns[9].visible"/>
<el-table-column label="物料名称" align="center" prop="materialName" width="100" v-if="columns[10].visible"/>
<el-table-column label="物料组" align="center" prop="matkl" v-if="columns[11].visible"/>
<el-table-column label="订单计划数量" align="center" prop="orderAmount" v-if="columns[12].visible"/>
<el-table-column label="完成数量" align="center" prop="completeAmount" v-if="columns[13].visible"/>
<el-table-column label="已发布数量" align="center" prop="releaseQty" v-if="columns[14].visible"/>
<el-table-column label="是否已下达计划" align="center" prop="isRelease" v-if="columns[15].visible" >
<template slot-scope="scope">
<dict-tag :options="dict.type.is_release" :value="scope.row.isRelease"/>
</template>
</el-table-column>
<el-table-column label="审核日期" align="center" prop="approveDate" width="180" v-if="columns[16].visible">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.approveDate, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="ERP最后修改日期" align="center" prop="erpModifyDate" width="180" v-if="columns[17].visible">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.erpModifyDate, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="计划交货日期" align="center" prop="planDeliveryDate" width="180" v-if="columns[18].visible">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.planDeliveryDate, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="计划开始日期" align="center" prop="beginDate" width="180" v-if="columns[19].visible">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.beginDate, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="计划结束日期" align="center" prop="endDate" width="180" v-if="columns[20].visible">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.endDate, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="完成日期" align="center" prop="completeDate" width="180" v-if="columns[21].visible">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.completeDate, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="是否标识" align="center" prop="isFlag" v-if="columns[22].visible" >
<template slot-scope="scope">
<dict-tag :options="dict.type.active_flag" :value="scope.row.isFlag"/>
</template>
</el-table-column>
<el-table-column label="备注" align="center" prop="remark" v-if="columns[23].visible"/>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改销售订单信息对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-form-item label="ERP主键" prop="erpId">
<el-input v-model="form.erpId" placeholder="请输入ERP主键" />
</el-form-item>
<el-form-item label="ERP订单明细ID" prop="fentryId">
<el-input v-model="form.fentryId" placeholder="请输入ERP订单明细ID" />
</el-form-item>
<el-form-item label="销售订单编号" prop="saleorderCode">
<el-input v-model="form.saleorderCode" placeholder="请输入销售订单编号" />
</el-form-item>
<el-form-item label="销售订单行号" prop="saleorderLinenumber">
<el-input v-model="form.saleorderLinenumber" placeholder="请输入销售订单行号" />
</el-form-item>
<el-form-item label="单据状态" prop="documentStatus">
<el-select v-model="form.documentStatus" placeholder="请选择单据状态">
<el-option
v-for="dict in dict.type.document_status"
:key="dict.value"
:label="dict.label"
:value="dict.value"
></el-option>
</el-select>
</el-form-item>
<el-form-item label="所属工厂" prop="factoryId">
<el-input v-model="form.factoryId" placeholder="请输入所属工厂" />
</el-form-item>
<el-form-item label="所属产线" prop="prodlineId">
<el-input v-model="form.prodlineId" placeholder="请输入所属产线" />
</el-form-item>
<el-form-item label="物料ID" prop="materialId">
<el-input v-model="form.materialId" placeholder="请输入物料ID" />
</el-form-item>
<el-form-item label="物料编码" prop="materialCode">
<el-input v-model="form.materialCode" placeholder="请输入物料编码" />
</el-form-item>
<el-form-item label="物料名称" prop="materialName">
<el-input v-model="form.materialName" placeholder="请输入物料名称" />
</el-form-item>
<el-form-item label="物料组" prop="matkl">
<el-input v-model="form.matkl" placeholder="请输入物料组" />
</el-form-item>
<el-form-item label="订单计划数量" prop="orderAmount">
<el-input v-model="form.orderAmount" placeholder="请输入订单计划数量" />
</el-form-item>
<el-form-item label="完成数量" prop="completeAmount">
<el-input v-model="form.completeAmount" placeholder="请输入完成数量" />
</el-form-item>
<el-form-item label="已发布数量" prop="releaseQty">
<el-input v-model="form.releaseQty" placeholder="请输入已发布数量" />
</el-form-item>
<el-form-item label="是否已下达计划" prop="isRelease">
<el-radio-group v-model="form.isRelease">
<el-radio
v-for="dict in dict.type.is_release"
:key="dict.value"
:label="dict.value"
>{{dict.label}}</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item label="审核日期" prop="approveDate">
<el-date-picker clearable
v-model="form.approveDate"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择审核日期">
</el-date-picker>
</el-form-item>
<el-form-item label="ERP最后修改日期" prop="erpModifyDate">
<el-date-picker clearable
v-model="form.erpModifyDate"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择ERP最后修改日期">
</el-date-picker>
</el-form-item>
<el-form-item label="计划交货日期" prop="planDeliveryDate">
<el-date-picker clearable
v-model="form.planDeliveryDate"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择计划交货日期">
</el-date-picker>
</el-form-item>
<el-form-item label="计划开始日期" prop="beginDate">
<el-date-picker clearable
v-model="form.beginDate"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择计划开始日期">
</el-date-picker>
</el-form-item>
<el-form-item label="计划结束日期" prop="endDate">
<el-date-picker clearable
v-model="form.endDate"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择计划结束日期">
</el-date-picker>
</el-form-item>
<el-form-item label="完成日期" prop="completeDate">
<el-date-picker clearable
v-model="form.completeDate"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择完成日期">
</el-date-picker>
</el-form-item>
<el-form-item label="是否标识" prop="isFlag">
<el-input v-model="form.isFlag" placeholder="请输入是否标识" />
</el-form-item>
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import { listSaleOrder, getSaleOrder, delSaleOrder, addSaleOrder, updateSaleOrder } from "@/api/mes/saleOrder";
export default {
name: "SaleOrder",
dicts: ['document_status', 'is_release', 'active_flag'],
data() {
return {
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
saleOrderList: [],
//
title: "",
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
erpId: null,
fentryId: null,
saleorderCode: null,
saleorderLinenumber: null,
documentStatus: null,
factoryId: null,
prodlineId: null,
materialId: null,
materialCode: null,
materialName: null,
matkl: null,
orderAmount: null,
completeAmount: null,
releaseQty: null,
isRelease: null,
approveDate: null,
erpModifyDate: null,
planDeliveryDate: null,
beginDate: null,
endDate: null,
completeDate: null,
isFlag: null,
},
//
form: {},
//
rules: {
isFlag: [
{ required: true, message: "是否标识不能为空", trigger: "blur" }
],
},
columns: [
{ key: 0, label: `主键标识`, visible: false },
{ key: 1, label: `ERP主键`, visible: false },
{ key: 2, label: `ERP订单明细ID`, visible: false },
{ key: 3, label: `销售订单编号`, visible: true },
{ key: 4, label: `销售订单行号`, visible: true },
{ key: 5, label: `单据状态`, visible: false },
{ key: 6, label: `所属工厂`, visible: false },
{ key: 7, label: `所属产线`, visible: false },
{ key: 8, label: `物料ID`, visible: false },
{ key: 9, label: `物料编码`, visible: true },
{ key: 10, label: `物料名称`, visible: true },
{ key: 11, label: `物料组`, visible: false },
{ key: 12, label: `订单计划数量`, visible: true },
{ key: 13, label: `完成数量`, visible: false },
{ key: 14, label: `已发布数量`, visible: false },
{ key: 15, label: `是否已下达计划`, visible: false },
{ key: 16, label: `审核日期`, visible: false },
{ key: 17, label: `ERP最后修改日期`, visible: false },
{ key: 18, label: `计划交货日期`, visible: true },
{ key: 19, label: `计划开始日期`, visible: true },
{ key: 20, label: `计划结束日期`, visible: true },
{ key: 21, label: `完成日期`, visible: true },
{ key: 22, label: `是否标识`, visible: true },
{ key: 23, label: `备注`, visible: false },
{ key: 24, label: `创建人`, visible: false },
{ key: 25, label: `创建时间`, visible: false },
{ key: 26, label: `更新人`, visible: false },
{ key: 27, label: `更新时间`, visible: false },
],
};
},
created() {
this.getList();
},
methods: {
/** 查询销售订单信息列表 */
getList() {
this.loading = true;
listSaleOrder(this.queryParams).then(response => {
this.saleOrderList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
saleOrderId: null,
erpId: null,
fentryId: null,
saleorderCode: null,
saleorderLinenumber: null,
documentStatus: null,
factoryId: null,
prodlineId: null,
materialId: null,
materialCode: null,
materialName: null,
matkl: null,
orderAmount: null,
completeAmount: null,
releaseQty: null,
isRelease: null,
approveDate: null,
erpModifyDate: null,
planDeliveryDate: null,
beginDate: null,
endDate: null,
completeDate: null,
isFlag: null,
remark: null,
createBy: null,
createTime: null,
updateBy: null,
updateTime: null
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.saleOrderId)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加销售订单信息";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const saleOrderId = row.saleOrderId || this.ids
getSaleOrder(saleOrderId).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改销售订单信息";
});
},
//
handleRowClick(row) {
this.selectedRow = row
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.saleOrderId != null) {
updateSaleOrder(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addSaleOrder(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const saleOrderIds = row.saleOrderId || this.ids;
this.$modal.confirm('是否确认删除销售订单信息编号为"' + saleOrderIds + '"的数据项?').then(function() {
return delSaleOrder(saleOrderIds);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('mes/saleOrder/export', {
...this.queryParams
}, `saleOrder_${new Date().getTime()}.xlsx`)
}
}
};
</script>

@ -0,0 +1,673 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="工单编号" prop="orderCode">
<el-input
v-model="queryParams.orderCode"
placeholder="请输入工单编号"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="销售订单编号" prop="saleorderCode">
<el-input
v-model="queryParams.saleorderCode"
placeholder="请输入销售订单编号"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="物料ID" prop="materialId">
<el-input
v-model="queryParams.materialId"
placeholder="请输入物料ID"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="派工类型" prop="dispatchType">
<el-select v-model="queryParams.dispatchType" placeholder="请选择派工类型" clearable>
<el-option
v-for="dict in dict.type.dispatch_type"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
<el-form-item label="工单状态" prop="orderStatus">
<el-select v-model="queryParams.orderStatus" placeholder="请选择工单状态" clearable>
<el-option
v-for="dict in dict.type.plan_status"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
<!-- <el-form-item label="库存锁定标识" prop="stockLockFlag">-->
<!-- <el-select v-model="queryParams.stockLockFlag" placeholder="请选择库存锁定标识" clearable>-->
<!-- <el-option-->
<!-- v-for="dict in dict.type.active_flag"-->
<!-- :key="dict.value"-->
<!-- :label="dict.label"-->
<!-- :value="dict.value"-->
<!-- />-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery"></el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"></el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['mes:productOrder:add']"
>销售订单新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleNoOrderAdd"
v-hasPermi="['mes:productOrder:add']"
>无订单新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['mes:productOrder:edit']"
>修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['mes:productOrder:remove']"
>删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['mes:productOrder:export']"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="productOrderList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="主键标识" align="center" prop="productOrderId" v-if="columns[0].visible"/>
<el-table-column label="工单编号" align="center" prop="orderCode" v-if="columns[1].visible"/>
<el-table-column label="销售订单ID" align="center" prop="saleOrderId" v-if="columns[2].visible"/>
<el-table-column label="销售订单编号" align="center" prop="saleorderCode" v-if="columns[3].visible"/>
<el-table-column label="销售订单行号" align="center" prop="saleorderLinenumber" v-if="columns[4].visible"/>
<el-table-column label="项目编号" align="center" prop="projectNo" v-if="columns[5].visible"/>
<el-table-column label="物料ID" align="center" prop="materialId" v-if="columns[6].visible"/>
<el-table-column label="物料bomID" align="center" prop="materialBomId" v-if="columns[7].visible"/>
<el-table-column label="派工类型" align="center" prop="dispatchType" v-if="columns[8].visible" >
<template slot-scope="scope">
<dict-tag :options="dict.type.dispatch_type" :value="scope.row.dispatchType"/>
</template>
</el-table-column>
<el-table-column label="派工ID" align="center" prop="dispatchId" v-if="columns[9].visible"/>
<el-table-column label="销售数量" align="center" prop="saleAmount" v-if="columns[10].visible"/>
<el-table-column label="计划数量" align="center" prop="planAmount" v-if="columns[11].visible"/>
<el-table-column label="已派工数量" align="center" prop="dispatchAmount" v-if="columns[12].visible"/>
<el-table-column label="完成数量" align="center" prop="completeAmount" v-if="columns[13].visible"/>
<el-table-column label="发布时间" align="center" prop="releaseTime" width="180" v-if="columns[14].visible">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.releaseTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="计划交货日期" align="center" prop="planDeliveryDate" width="180" v-if="columns[26].visible">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.updateTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="计划开始时间" align="center" prop="planBeginTime" width="180" v-if="columns[15].visible">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.planBeginTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="计划结束时间" align="center" prop="planEndTime" width="180" v-if="columns[16].visible">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.planEndTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="开始时间" align="center" prop="realBeginTime" width="180" v-if="columns[17].visible">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.realBeginTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="完成时间" align="center" prop="realEndTime" width="180" v-if="columns[18].visible">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.realEndTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="工单状态" align="center" prop="orderStatus" v-if="columns[19].visible" >
<template slot-scope="scope">
<dict-tag :options="dict.type.plan_status" :value="scope.row.orderStatus"/>
</template>
</el-table-column>
<el-table-column label="库存锁定标识" align="center" prop="stockLockFlag" v-if="columns[20].visible" >
<template slot-scope="scope">
<dict-tag :options="dict.type.active_flag" :value="scope.row.stockLockFlag"/>
</template>
</el-table-column>
<el-table-column label="备注" align="center" prop="remark" v-if="columns[21].visible"/>
<el-table-column label="创建人" align="center" prop="createBy" v-if="columns[22].visible"/>
<el-table-column label="创建时间" align="center" prop="createTime" width="180" v-if="columns[23].visible">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="更新人" align="center" prop="updateBy" v-if="columns[24].visible"/>
<el-table-column label="更新时间" align="center" prop="updateTime" width="180" v-if="columns[25].visible">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.updateTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['mes:productOrder:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleLockInventory(scope.row)"
>锁库存</el-button>
<!-- <el-button-->
<!-- size="mini"-->
<!-- type="text"-->
<!-- icon="el-icon-delete"-->
<!-- @click="handleDelete(scope.row)"-->
<!-- v-hasPermi="['mes:productOrder:remove']"-->
<!-- >删除</el-button>-->
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改生产工单对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="110px">
<el-form-item label="工单编号" prop="orderCode">
<el-input v-model="form.orderCode" placeholder="请输入工单编号" :disabled="true"/>
</el-form-item>
<!-- <el-form-item label="销售订单ID" prop="saleOrderId">-->
<!-- <el-input v-model="form.saleOrderId" placeholder="请输入销售订单ID" />-->
<!-- </el-form-item>-->
<el-form-item label="销售订单编号" prop="saleorderCode">
<el-input v-model="form.saleorderCode" placeholder="请点击右侧检索销售订单编号" readonly>
<el-button slot="append" icon="el-icon-search" @click="handleSaleOrderAdd"></el-button>
</el-input>
</el-form-item>
<el-form-item label="销售订单行号" prop="saleorderLinenumber">
<el-input v-model="form.saleorderLinenumber" placeholder="请输入销售订单行号" :disabled="true"/>
</el-form-item>
<!-- <el-form-item label="项目编号" prop="projectNo">-->
<!-- <el-input v-model="form.projectNo" placeholder="请输入项目编号" />-->
<!-- </el-form-item>-->
<!-- <el-form-item label="物料ID" prop="materialId" >-->
<!-- <el-input v-model="form.materialId" placeholder="请输入物料ID" :disabled="true"/>-->
<!-- </el-form-item>-->
<el-form-item label="物料名称" prop="materialId" >
<el-input v-model="form.materialName" placeholder="请输入物料名称" :disabled="true"/>
</el-form-item>
<el-form-item label="物料BOM" prop="materialBomId">
<el-select v-model="form.materialBomId" placeholder="请选择物料BOM">
<el-option
v-for="item in materialBomList"
:key="item.materialBomId"
:label="item.materialNameDesc"
:value="item.materialBomId"
></el-option>
</el-select>
</el-form-item>
<!-- <el-form-item label="派工类型" prop="dispatchType">-->
<!-- <el-radio-group v-model="form.dispatchType">-->
<!-- <el-radio-->
<!-- v-for="dict in dict.type.dispatch_type"-->
<!-- :key="dict.value"-->
<!-- :label="dict.value"-->
<!-- >{{dict.label}}</el-radio>-->
<!-- </el-radio-group>-->
<!-- </el-form-item>-->
<el-form-item label="工艺路线" prop="dispatchId">
<el-select v-model="form.dispatchId" filterable placeholder="请选择工艺路线" clearable>
<el-option
v-for="item in routeList"
:key="item.routeId"
:label="item.routeName"
:value="item.routeId"
></el-option>
</el-select>
</el-form-item>
<el-form-item label="销售数量" prop="saleAmount">
<el-input-number v-model="form.saleAmount" placeholder="请输入销售数量" :disabled="true"/>
</el-form-item>
<el-form-item label="计划数量" prop="planAmount">
<el-input-number v-model="form.planAmount" placeholder="请输入计划数量" />
</el-form-item>
<!-- <el-form-item label="已派工数量" prop="dispatchAmount">-->
<!-- <el-input-number v-model="form.dispatchAmount" placeholder="请输入已派工数量" />-->
<!-- </el-form-item>-->
<!-- <el-form-item label="完成数量" prop="completeAmount">-->
<!-- <el-input-number v-model="form.completeAmount" placeholder="请输入完成数量" />-->
<!-- </el-form-item>-->
<el-form-item label="计划交货日期" prop="planDeliveryDate">
<el-date-picker clearable
v-model="form.planDeliveryDate"
type="datetime"
value-format="yyyy-MM-dd HH:mm:ss"
placeholder="请选择计划交货日期">
</el-date-picker>
</el-form-item>
<el-form-item label="计划开始时间" prop="planBeginTime">
<el-date-picker clearable
v-model="form.planBeginTime"
type="datetime"
value-format="yyyy-MM-dd HH:mm:ss"
placeholder="请选择计划开始时间">
</el-date-picker>
</el-form-item>
<el-form-item label="计划结束时间" prop="planEndTime">
<el-date-picker clearable
v-model="form.planEndTime"
type="datetime"
value-format="yyyy-MM-dd HH:mm:ss"
placeholder="请选择计划结束时间">
</el-date-picker>
</el-form-item>
<!-- <el-form-item label="工单状态" prop="orderStatus">-->
<!-- <el-select v-model="form.orderStatus" placeholder="请选择工单状态">-->
<!-- <el-option-->
<!-- v-for="dict in dict.type.plan_status"-->
<!-- :key="dict.value"-->
<!-- :label="dict.label"-->
<!-- :value="dict.value"-->
<!-- ></el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<!-- <el-form-item label="库存锁定标识" prop="stockLockFlag">-->
<!-- <el-radio-group v-model="form.stockLockFlag">-->
<!-- <el-radio-->
<!-- v-for="dict in dict.type.active_flag"-->
<!-- :key="dict.value"-->
<!-- :label="dict.value"-->
<!-- >{{dict.label}}</el-radio>-->
<!-- </el-radio-group>-->
<!-- </el-form-item>-->
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
<!-- 添加销售订单信息对话框 -->
<el-dialog title="选择销售订单" :visible.sync="saleOrderOpen" append-to-body>
<add-SaleOrder @selection="handleSelection" ref="saleOrderRef"></add-SaleOrder>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitSaleOrderForm"> </el-button>
<el-button @click="saleOrderOpen = false"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
listProductOrder,
getProductOrder,
delProductOrder,
addProductOrder,
updateProductOrder,
getOrderCode, productOrderLockInventory
} from "@/api/mes/productOrder";
import addSaleOrder from '@//views/mes/productOrder/addSaleOrder.vue';
import {getMaterialVisionList} from "@//api/mes/materialBom";
import {findRouteList} from "@//api/mes/baseRoute";
export default {
name: "ProductOrder",
dicts: ['active_flag', 'plan_status', 'dispatch_type'],
components: {
'add-SaleOrder': addSaleOrder
},
data() {
return {
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
productOrderList: [],
//
title: "",
//
open: false,
//
saleOrderOpen: false,
//
noOrderOpen: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
orderCode: null,
saleOrderId: null,
saleorderCode: null,
saleorderLinenumber: null,
projectNo: null,
materialId: null,
materialBomId: null,
dispatchType: null,
dispatchId: null,
saleAmount: null,
planAmount: null,
dispatchAmount: null,
completeAmount: null,
releaseTime: null,
planDeliveryDate: null,
planBeginTime: null,
planEndTime: null,
realBeginTime: null,
realEndTime: null,
orderStatus: null,
stockLockFlag: null,
createBy: null,
createTime: null,
updateBy: null,
updateTime: null
},
//
form: {},
//
rules: {
orderCode: [
{ required: true, message: "工单编号不能为空", trigger: "blur" }
],
saleOrderId: [
{ required: true, message: "销售订单ID不能为空", trigger: "blur" }
],
saleorderCode: [
{ required: true, message: "销售订单编号不能为空", trigger: "blur" }
],
materialId: [
{ required: true, message: "物料ID不能为空", trigger: "blur" }
],
materialBomId: [
{ required: true, message: "物料bomID不能为空", trigger: "blur" }
],
dispatchType: [
{ required: true, message: "派工类型不能为空", trigger: "change" }
],
dispatchId: [
{ required: true, message: "派工ID不能为空", trigger: "blur" }
],
planAmount: [
{ required: true, message: "计划数量不能为空", trigger: "blur" },
{
validator: (rule, value, callback) => callback(Number(value) >= 1 ? undefined : new Error("计划数量需要大于等于1")),
trigger: "blur"
}
],
},
columns: [
{ key: 0, label: `主键标识`, visible: false },
{ key: 1, label: `工单编号`, visible: true },
{ key: 2, label: `销售订单ID`, visible: true },
{ key: 3, label: `销售订单编号`, visible: true },
{ key: 4, label: `销售订单行号`, visible: true },
{ key: 5, label: `项目编号`, visible: true },
{ key: 6, label: `物料ID`, visible: true },
{ key: 7, label: `物料bomID`, visible: true },
{ key: 8, label: `派工类型`, visible: true },
{ key: 9, label: `派工ID`, visible: true },
{ key: 10, label: `销售数量`, visible: true },
{ key: 11, label: `计划数量`, visible: true },
{ key: 12, label: `已派工数量`, visible: true },
{ key: 13, label: `完成数量`, visible: true },
{ key: 14, label: `发布时间`, visible: true },
{ key: 15, label: `计划开始时间`, visible: true },
{ key: 16, label: `计划结束时间`, visible: true },
{ key: 17, label: `开始时间`, visible: true },
{ key: 18, label: `完成时间`, visible: true },
{ key: 19, label: `工单状态`, visible: true },
{ key: 20, label: `库存锁定标识`, visible: true },
{ key: 21, label: `备注`, visible: true },
{ key: 22, label: `创建人`, visible: false },
{ key: 23, label: `创建时间`, visible: false },
{ key: 24, label: `更新人`, visible: false },
{ key: 25, label: `更新时间`, visible: false },
{ key: 26, label: `计划交货日期`, visible: true },
],
//BOM
materialBomList: [],
//线
routeList: [],
};
},
created() {
this.getList();
findRouteList().then(response => {
this.routeList = response.data;
})
},
methods: {
/** 查询生产工单列表 */
getList() {
this.loading = true;
listProductOrder(this.queryParams).then(response => {
this.productOrderList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
productOrderId: null,
orderCode: null,
saleOrderId: null,
saleorderCode: null,
saleorderLinenumber: null,
projectNo: null,
materialId: null,
materialBomId: null,
dispatchType: '2',
dispatchId: null,
saleAmount: null,
planAmount: null,
dispatchAmount: null,
completeAmount: null,
releaseTime: null,
planDeliveryDate: null,
planBeginTime: null,
planEndTime: null,
realBeginTime: null,
realEndTime: null,
orderStatus: null,
stockLockFlag: null,
remark: null,
createBy: null,
createTime: null,
updateBy: null,
updateTime: null
};
this.materialBomList = null;
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
/** 新增按钮操作 */
handleSaleOrderAdd() {
this.saleOrderOpen = true;
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.productOrderId)
this.single = selection.length!==1
this.multiple = !selection.length
},
handleSelection(selection) {
this.ids = selection.map(item => item.productOrderId)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 提交物料信息按钮 */
submitSaleOrderForm() {
let selectedRow = this.$refs.saleOrderRef.selectedRow;
this.form.saleOrderId = selectedRow.saleOrderId;
this.form.saleorderCode = selectedRow.saleorderCode;
this.form.saleorderLinenumber = selectedRow.saleorderLinenumber;
this.form.materialId = selectedRow.materialId;
this.form.materialCode = selectedRow.materialCode;
this.form.materialName = selectedRow.materialName;
this.form.saleAmount = selectedRow.orderAmount;
this.form.planBeginTime = selectedRow.beginDate + " 00:00:00";
this.form.planEndTime = selectedRow.endDate + " 00:00:00";
this.form.planDeliveryDate = selectedRow.planDeliveryDate + " 00:00:00";
this.form.saleOrderFlag = '1';
getMaterialVisionList(this.form.materialId).then(response => {
this.materialBomList = response.data
this.form.materialBomId = this.materialBomList[0].materialBomId
})
this.saleOrderOpen = false;
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
getOrderCode().then(response => {
this.form.orderCode = response.msg;
})
this.open = true;
this.title = "添加生产工单";
},
/** 无订单新增按钮操作 */
handleNoOrderAdd() {
this.reset();
this.noOrderOpen = true;
this.title = "添加生产工单";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const productOrderId = row.productOrderId || this.ids
getProductOrder(productOrderId).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改生产工单";
});
},
/** 锁库存 */
handleLockInventory(row) {
this.form.productOrderId = row.productOrderId;
this.form.stockLockFlag = '1';
productOrderLockInventory(this.form).then(response => {
this.$modal.msgSuccess("锁库存成功");
this.getList();
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.productOrderId != null) {
updateProductOrder(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addProductOrder(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const productOrderIds = row.productOrderId || this.ids;
this.$modal.confirm('是否确认删除生产工单编号为"' + productOrderIds + '"的数据项?').then(function() {
return delProductOrder(productOrderIds);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('mes/productOrder/export', {
...this.queryParams
}, `productOrder_${new Date().getTime()}.xlsx`)
}
}
};
</script>

@ -109,7 +109,7 @@
<!-- v-hasPermi="['mes:saleOrder:remove']"-->
<!-- >删除</el-button>-->
<!-- </el-col>-->
<!-- <el-col :span="1.5">-->
<el-col :span="1.5">
<el-button
type="warning"
plain

Loading…
Cancel
Save