Merge remote-tracking branch 'origin/master'
commit
703e5c124f
@ -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));
|
||||
}
|
||||
}
|
@ -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_order和base_material
|
||||
*
|
||||
* @param mesProductPlan 生产派工
|
||||
* @return 生产派工集合
|
||||
*/
|
||||
public List<MesProductPlan> selectMesProductPlanJoinList(MesProductPlan mesProductPlan);
|
||||
}
|
@ -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_order和base_material
|
||||
*
|
||||
* @param mesProductPlan 生产派工
|
||||
* @return 生产派工
|
||||
*/
|
||||
public List<MesProductPlan> selectMesProductPlanJoinList(MesProductPlan mesProductPlan);
|
||||
}
|
@ -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_order和base_material
|
||||
*
|
||||
* @param mesProductPlan 生产派工
|
||||
* @return 生产派工
|
||||
*/
|
||||
@Override
|
||||
public List<MesProductPlan> selectMesProductPlanJoinList(MesProductPlan mesProductPlan)
|
||||
{
|
||||
Long stationId = SecurityUtils.getStationd();
|
||||
System.out.println("stationId: " + stationId);
|
||||
return mesProductPlanMapper.selectMesProductPlanJoinList(mesProductPlan);
|
||||
}
|
||||
|
||||
}
|
@ -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>
|
@ -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>
|
Loading…
Reference in New Issue