Merge remote-tracking branch 'origin/master'

master
陈恒杰 9 months ago
commit 6ea636d819

@ -8,6 +8,7 @@ import com.op.device.domain.*;
import com.op.device.domain.dto.PDADTO;
import com.op.device.service.IDevicePDAService;
import com.op.device.service.IEquRepairOrderService;
import com.op.device.service.IEquSparepartsInOutService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
@ -29,6 +30,10 @@ public class DevicePDAController extends BaseController {
@Autowired
private IEquRepairOrderService equRepairOrderService;
@Autowired
private IEquSparepartsInOutService equSparepartsInOutService;
/**
* list
*
@ -198,4 +203,16 @@ public class DevicePDAController extends BaseController {
public AjaxResult getFaultReasonList(EquFaultReason equFaultReason) {
return devicePDAService.selectEquFaultReasonList(equFaultReason);
}
//备品备件查询接口
@GetMapping(value = "/querySpareDetailBySpareCode/{spareCode}")
public AjaxResult querySpareDetailBySpareCode(@PathVariable("spareCode") String spareCode) {
return devicePDAService.selectSpareDetailBySpareCode(spareCode);
}
//备品备件出入库
@PostMapping("/sparePartsInOutStorage")
public AjaxResult sparePartsInOutStorage(@RequestBody EquSparepartsInOut equSparepartsInOut) {
return equSparepartsInOutService.insertEquSparepartsInOut(equSparepartsInOut);
}
}

@ -15,8 +15,8 @@ import org.springframework.web.bind.annotation.RestController;
import com.op.common.log.annotation.Log;
import com.op.common.log.enums.BusinessType;
import com.op.common.security.annotation.RequiresPermissions;
import com.op.device.domain.SparePartsInStorage;
import com.op.device.service.ISparePartsInOutStorageService;
import com.op.device.domain.EquSparepartsInOut;
import com.op.device.service.IEquSparepartsInOutService;
import com.op.common.core.web.controller.BaseController;
import com.op.common.core.web.domain.AjaxResult;
import com.op.common.core.utils.poi.ExcelUtil;
@ -30,18 +30,18 @@ import com.op.common.core.web.page.TableDataInfo;
*/
@RestController
@RequestMapping("/sparepartsInOutStorage")
public class SparePartsInOutStorageController extends BaseController {
public class EquSparepartsInOutController extends BaseController {
@Autowired
private ISparePartsInOutStorageService sparePartsInOutStorageService;
private IEquSparepartsInOutService equSparepartsInOutService;
/**
*
*/
@RequiresPermissions("device:sparepartsInOutStorage:list")
@GetMapping("/list")
public TableDataInfo list(SparePartsInStorage sparePartsInStorage) {
public TableDataInfo list(EquSparepartsInOut equSparepartsInOut) {
startPage();
List<SparePartsInStorage> list = sparePartsInOutStorageService.selectSparePartsInStorageList(sparePartsInStorage);
List<EquSparepartsInOut> list = equSparepartsInOutService.selectEquSparepartsInOutList(equSparepartsInOut);
return getDataTable(list);
}
@ -51,9 +51,9 @@ public class SparePartsInOutStorageController extends BaseController {
@RequiresPermissions("device:sparepartsInOutStorage:export")
@Log(title = "备品备件出入库", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, SparePartsInStorage sparePartsInStorage) {
List<SparePartsInStorage> list = sparePartsInOutStorageService.selectSparePartsInStorageList(sparePartsInStorage);
ExcelUtil<SparePartsInStorage> util = new ExcelUtil<SparePartsInStorage>(SparePartsInStorage.class);
public void export(HttpServletResponse response, EquSparepartsInOut equSparepartsInOut) {
List<EquSparepartsInOut> list = equSparepartsInOutService.selectEquSparepartsInOutList(equSparepartsInOut);
ExcelUtil<EquSparepartsInOut> util = new ExcelUtil<EquSparepartsInOut>(EquSparepartsInOut.class);
util.exportExcel(response, list, "备品备件出入库数据");
}
@ -61,9 +61,9 @@ public class SparePartsInOutStorageController extends BaseController {
*
*/
@RequiresPermissions("device:sparepartsInOutStorage:query")
@GetMapping(value = "/{rawOrderInSnId}")
public AjaxResult getInfo(@PathVariable("rawOrderInSnId") String rawOrderInSnId) {
return success(sparePartsInOutStorageService.selectSparePartsInStorageByRawOrderInSnId(rawOrderInSnId));
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") String id) {
return success(equSparepartsInOutService.selectEquSparepartsInOutById(id));
}
/**
@ -72,8 +72,8 @@ public class SparePartsInOutStorageController extends BaseController {
@RequiresPermissions("device:sparepartsInOutStorage:add")
@Log(title = "备品备件出入库", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody SparePartsInStorage sparePartsInStorage) {
return toAjax(sparePartsInOutStorageService.insertSparePartsInStorage(sparePartsInStorage));
public AjaxResult add(@RequestBody EquSparepartsInOut equSparepartsInOut) {
return equSparepartsInOutService.insertEquSparepartsInOut(equSparepartsInOut);
}
/**
@ -82,8 +82,8 @@ public class SparePartsInOutStorageController extends BaseController {
@RequiresPermissions("device:sparepartsInOutStorage:edit")
@Log(title = "备品备件出入库", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody SparePartsInStorage sparePartsInStorage) {
return toAjax(sparePartsInOutStorageService.updateSparePartsInStorage(sparePartsInStorage));
public AjaxResult edit(@RequestBody EquSparepartsInOut equSparepartsInOut) {
return equSparepartsInOutService.updateEquSparepartsInOut(equSparepartsInOut);
}
/**
@ -91,8 +91,8 @@ public class SparePartsInOutStorageController extends BaseController {
*/
@RequiresPermissions("device:sparepartsInOutStorage:remove")
@Log(title = "备品备件出入库", businessType = BusinessType.DELETE)
@DeleteMapping("/{rawOrderInSnIds}")
public AjaxResult remove(@PathVariable String[] rawOrderInSnIds) {
return toAjax(sparePartsInOutStorageService.deleteSparePartsInStorageByRawOrderInSnIds(rawOrderInSnIds));
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable String[] ids) {
return equSparepartsInOutService.deleteEquSparepartsInOutByIds(ids);
}
}

@ -80,7 +80,11 @@ public class SparePartsLedgerController extends BaseController {
@Log(title = "备品备件台账管理", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody SparePartsLedger sparePartsLedger) {
return toAjax(sparePartsLedgerService.insertSparePartsLedger(sparePartsLedger));
if (sparePartsLedgerService.checkSpareCodeUnique(sparePartsLedger)) {
return AjaxResult.error("备品备件编码已存在!");
} else {
return toAjax(sparePartsLedgerService.insertSparePartsLedger(sparePartsLedger));
}
}
/**

@ -126,6 +126,12 @@ public class EquOrder extends BaseEntity {
@Excel(name = "责任人")
private String planPerson;
/**
*
*/
@Excel(name = "责任人姓名")
private String planPersonName;
/**
*
*/
@ -678,6 +684,14 @@ public class EquOrder extends BaseEntity {
return planPerson;
}
public void setPlanPersonName(String planPersonName) {
this.planPersonName = planPersonName;
}
public String getPlanPersonName() {
return planPersonName;
}
public void setOrderCostTime(String orderCostTime) {
this.orderCostTime = orderCostTime;
}
@ -796,6 +810,7 @@ public class EquOrder extends BaseEntity {
.append("orderStatus", getOrderStatus())
.append("orderCost", getOrderCost())
.append("planPerson", getPlanPerson())
.append("planPersonName", getPlanPersonName())
.append("orderCostTime", getOrderCostTime())
.append("orderSignPerson", getOrderSignPerson())
.append("factoryCode", getFactoryCode())

@ -46,9 +46,12 @@ public class EquRepairWorkOrder extends BaseEntity {
@Excel(name = "关联计划")
private String orderRelevance;
@Excel(name = "维修人员")
@Excel(name = "维修人员工号")
private String workPerson;
@Excel(name = "维修人员姓名")
private String workPersonName;
@Excel(name = "维修组")
private String workTeam;
@ -392,6 +395,13 @@ public class EquRepairWorkOrder extends BaseEntity {
return workPerson;
}
public void setWorkPersonName(String workPersonName) {
this.workPersonName = workPersonName;
}
public String getWorkPersonName() {
return workPersonName;
}
public void setWorkTeam(String workTeam) {
this.workTeam = workTeam;
}

@ -0,0 +1,168 @@
package com.op.device.domain;
import java.math.BigDecimal;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.op.common.core.annotation.Excel;
import com.op.common.core.web.domain.BaseEntity;
/**
*
*
* @author Open Platform
* @date 2023-10-17
*/
public class EquSparepartsInOut extends BaseEntity {
private static final long serialVersionUID = 1L;
private String id;
@Excel(name = "出入库类型")
private String inOutType;
@Excel(name = "出入库单号")
private String orderNo;
@Excel(name = "备品备件号")
private String spareCode;
@Excel(name = "备品备件名称")
private String spareName;
@Excel(name = "数量")
private BigDecimal amount;
@Excel(name = "备用1")
private String attr1;
@Excel(name = "备用2")
private String attr2;
@Excel(name = "备用3")
private String attr3;
@Excel(name = "删除标记")
private String delFlag;
@Excel(name = "工厂号")
private String factoryCode;
///////////////////////////
private String storageId;
public void setId(String id) {
this.id = id;
}
public String getId() {
return id;
}
public void setInOutType(String inOutType) {
this.inOutType = inOutType;
}
public String getInOutType() {
return inOutType;
}
public void setOrderNo(String orderNo) {
this.orderNo = orderNo;
}
public String getOrderNo() {
return orderNo;
}
public void setSpareCode(String spareCode) {
this.spareCode = spareCode;
}
public String getSpareCode() {
return spareCode;
}
public void setSpareName(String spareName) {
this.spareName = spareName;
}
public String getSpareName() {
return spareName;
}
public void setAmount(BigDecimal amount) {
this.amount = amount;
}
public BigDecimal getAmount() {
return amount;
}
public void setAttr1(String attr1) {
this.attr1 = attr1;
}
public String getAttr1() {
return attr1;
}
public void setAttr2(String attr2) {
this.attr2 = attr2;
}
public String getAttr2() {
return attr2;
}
public void setAttr3(String attr3) {
this.attr3 = attr3;
}
public String getAttr3() {
return attr3;
}
public void setFactoryCode(String factoryCode) {
this.factoryCode = factoryCode;
}
public String getFactoryCode() {
return factoryCode;
}
public void setDelFlag(String delFlag) {
this.delFlag = delFlag;
}
public String getDelFlag() {
return delFlag;
}
/////
public void setStorageId(String storageId) {
this.storageId = storageId;
}
public String getStorageId() {
return storageId;
}
@Override
public String toString() {
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId())
.append("inOutType", getInOutType())
.append("orderNo", getOrderNo())
.append("spareCode", getSpareCode())
.append("spareName", getSpareName())
.append("amount", getAmount())
.append("attr1", getAttr1())
.append("attr2", getAttr2())
.append("attr3", getAttr3())
.append("delFlag", getDelFlag())
.append("factoryCode", getFactoryCode())
.toString();
}
}

@ -1,433 +0,0 @@
package com.op.device.domain;
import java.math.BigDecimal;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.op.common.core.annotation.Excel;
import com.op.common.core.web.domain.BaseEntity;
/**
* wms_raw_order_in_sn
*
* @author Open Platform
* @date 2023-10-17
*/
public class SparePartsInStorage extends BaseEntity {
private static final long serialVersionUID = 1L;
/**
*
*/
private String rawOrderInSnId;
/**
*
*/
@Excel(name = "仓库编码")
private String whCode;
/**
*
*/
@Excel(name = "库区编码")
private String waCode;
/**
*
*/
@Excel(name = "库位编码")
private String wlCode;
/**
*
*/
@Excel(name = "入库单号")
private String orderNo;
/**
*
*/
@Excel(name = "采购订单号")
private String poNo;
/**
*
*/
@Excel(name = "采购订单行项目")
private String poLine;
/**
*
*/
@Excel(name = "物料号")
private String materialCode;
/**
*
*/
@Excel(name = "物料描述")
private String materialDesc;
/**
* sn/LPN
*/
@Excel(name = "sn/LPN")
private String sn;
/**
*
*/
@Excel(name = "数量")
private BigDecimal amount;
/**
* 1
*/
@Excel(name = "备用1")
private String userDefined1;
/**
* 2
*/
@Excel(name = "备用2")
private String userDefined2;
/**
* 3
*/
@Excel(name = "备用3")
private String userDefined3;
/**
* 4
*/
@Excel(name = "备用4")
private String userDefined4;
/**
* 5
*/
@Excel(name = "备用5")
private String userDefined5;
/**
* 6
*/
@Excel(name = "备用6")
private String userDefined6;
/**
* 7
*/
@Excel(name = "备用7")
private String userDefined7;
/**
* 8
*/
@Excel(name = "备用8")
private String userDefined8;
/**
* 9
*/
@Excel(name = "备用9")
private String userDefined9;
/**
* 10
*/
@Excel(name = "备用10")
private String userDefined10;
/**
*
*/
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date gmtCreate;
/**
*
*/
@Excel(name = "最后更新人")
private String lastModifiedBy;
/**
*
*/
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "最后更新时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date gmtModified;
/**
*
*/
@Excel(name = "有效标记")
private String activeFlag;
/**
* $column.columnComment
*/
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
private String factoryCode;
/**
* $column.columnComment
*/
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
private String sapFactoryCode;
public void setRawOrderInSnId(String rawOrderInSnId) {
this.rawOrderInSnId = rawOrderInSnId;
}
public String getRawOrderInSnId() {
return rawOrderInSnId;
}
public void setWhCode(String whCode) {
this.whCode = whCode;
}
public String getWhCode() {
return whCode;
}
public void setWaCode(String waCode) {
this.waCode = waCode;
}
public String getWaCode() {
return waCode;
}
public void setWlCode(String wlCode) {
this.wlCode = wlCode;
}
public String getWlCode() {
return wlCode;
}
public void setOrderNo(String orderNo) {
this.orderNo = orderNo;
}
public String getOrderNo() {
return orderNo;
}
public void setPoNo(String poNo) {
this.poNo = poNo;
}
public String getPoNo() {
return poNo;
}
public void setPoLine(String poLine) {
this.poLine = poLine;
}
public String getPoLine() {
return poLine;
}
public void setMaterialCode(String materialCode) {
this.materialCode = materialCode;
}
public String getMaterialCode() {
return materialCode;
}
public void setMaterialDesc(String materialDesc) {
this.materialDesc = materialDesc;
}
public String getMaterialDesc() {
return materialDesc;
}
public void setSn(String sn) {
this.sn = sn;
}
public String getSn() {
return sn;
}
public void setAmount(BigDecimal amount) {
this.amount = amount;
}
public BigDecimal getAmount() {
return amount;
}
public void setUserDefined1(String userDefined1) {
this.userDefined1 = userDefined1;
}
public String getUserDefined1() {
return userDefined1;
}
public void setUserDefined2(String userDefined2) {
this.userDefined2 = userDefined2;
}
public String getUserDefined2() {
return userDefined2;
}
public void setUserDefined3(String userDefined3) {
this.userDefined3 = userDefined3;
}
public String getUserDefined3() {
return userDefined3;
}
public void setUserDefined4(String userDefined4) {
this.userDefined4 = userDefined4;
}
public String getUserDefined4() {
return userDefined4;
}
public void setUserDefined5(String userDefined5) {
this.userDefined5 = userDefined5;
}
public String getUserDefined5() {
return userDefined5;
}
public void setUserDefined6(String userDefined6) {
this.userDefined6 = userDefined6;
}
public String getUserDefined6() {
return userDefined6;
}
public void setUserDefined7(String userDefined7) {
this.userDefined7 = userDefined7;
}
public String getUserDefined7() {
return userDefined7;
}
public void setUserDefined8(String userDefined8) {
this.userDefined8 = userDefined8;
}
public String getUserDefined8() {
return userDefined8;
}
public void setUserDefined9(String userDefined9) {
this.userDefined9 = userDefined9;
}
public String getUserDefined9() {
return userDefined9;
}
public void setUserDefined10(String userDefined10) {
this.userDefined10 = userDefined10;
}
public String getUserDefined10() {
return userDefined10;
}
public void setGmtCreate(Date gmtCreate) {
this.gmtCreate = gmtCreate;
}
public Date getGmtCreate() {
return gmtCreate;
}
public void setLastModifiedBy(String lastModifiedBy) {
this.lastModifiedBy = lastModifiedBy;
}
public String getLastModifiedBy() {
return lastModifiedBy;
}
public void setGmtModified(Date gmtModified) {
this.gmtModified = gmtModified;
}
public Date getGmtModified() {
return gmtModified;
}
public void setActiveFlag(String activeFlag) {
this.activeFlag = activeFlag;
}
public String getActiveFlag() {
return activeFlag;
}
public void setFactoryCode(String factoryCode) {
this.factoryCode = factoryCode;
}
public String getFactoryCode() {
return factoryCode;
}
public void setSapFactoryCode(String sapFactoryCode) {
this.sapFactoryCode = sapFactoryCode;
}
public String getSapFactoryCode() {
return sapFactoryCode;
}
@Override
public String toString() {
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
.append("rawOrderInSnId", getRawOrderInSnId())
.append("whCode", getWhCode())
.append("waCode", getWaCode())
.append("wlCode", getWlCode())
.append("orderNo", getOrderNo())
.append("poNo", getPoNo())
.append("poLine", getPoLine())
.append("materialCode", getMaterialCode())
.append("materialDesc", getMaterialDesc())
.append("sn", getSn())
.append("amount", getAmount())
.append("userDefined1", getUserDefined1())
.append("userDefined2", getUserDefined2())
.append("userDefined3", getUserDefined3())
.append("userDefined4", getUserDefined4())
.append("userDefined5", getUserDefined5())
.append("userDefined6", getUserDefined6())
.append("userDefined7", getUserDefined7())
.append("userDefined8", getUserDefined8())
.append("userDefined9", getUserDefined9())
.append("userDefined10", getUserDefined10())
.append("createBy", getCreateBy())
.append("gmtCreate", getGmtCreate())
.append("lastModifiedBy", getLastModifiedBy())
.append("gmtModified", getGmtModified())
.append("activeFlag", getActiveFlag())
.append("factoryCode", getFactoryCode())
.append("sapFactoryCode", getSapFactoryCode())
.toString();
}
}

@ -1,5 +1,9 @@
package com.op.device.domain.dto;
import com.fasterxml.jackson.annotation.JsonFormat;
import java.util.Date;
// 手持传参dto
public class PDADTO {
// 用户名
@ -10,6 +14,9 @@ public class PDADTO {
private String shutDown;
// @JsonFormat(pattern = "yyyy-MM-dd")
private Date createTime;
public String getOrderCode() {
return orderCode;
}
@ -41,4 +48,12 @@ public class PDADTO {
public void setPlanType(String planType) {
this.planType = planType;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
}

@ -0,0 +1,63 @@
package com.op.device.mapper;
import java.util.List;
import com.op.device.domain.EquSparepartsInOut;
/**
* Mapper
*
* @author Open Platform
* @date 2023-10-17
*/
public interface EquSparepartsInOutMapper {
/**
*
*
* @param id
* @return
*/
public EquSparepartsInOut selectEquSparepartsInOutById(String id);
/**
*
*
* @param equSparepartsInOut
* @return
*/
public List<EquSparepartsInOut> selectEquSparepartsInOutList(EquSparepartsInOut equSparepartsInOut);
/**
*
*
* @param equSparepartsInOut
* @return
*/
public int insertEquSparepartsInOut(EquSparepartsInOut equSparepartsInOut);
/**
*
*
* @param equSparepartsInOut
* @return
*/
public int updateEquSparepartsInOut(EquSparepartsInOut equSparepartsInOut);
/**
*
*
* @param id
* @return
*/
public int deleteEquSparepartsInOutById(String id);
/**
*
*
* @param ids
* @return
*/
public int deleteEquSparepartsInOutByIds(String[] ids);
int selectSerialNumber();
}

@ -1,61 +0,0 @@
package com.op.device.mapper;
import java.util.List;
import com.op.device.domain.SparePartsInStorage;
/**
* Mapper
*
* @author Open Platform
* @date 2023-10-17
*/
public interface SparePartsInOutStorageMapper {
/**
*
*
* @param rawOrderInSnId
* @return
*/
public SparePartsInStorage selectSparePartsInStorageByRawOrderInSnId(String rawOrderInSnId);
/**
*
*
* @param sparePartsInStorage
* @return
*/
public List<SparePartsInStorage> selectSparePartsInStorageList(SparePartsInStorage sparePartsInStorage);
/**
*
*
* @param sparePartsInStorage
* @return
*/
public int insertSparePartsInStorage(SparePartsInStorage sparePartsInStorage);
/**
*
*
* @param sparePartsInStorage
* @return
*/
public int updateSparePartsInStorage(SparePartsInStorage sparePartsInStorage);
/**
*
*
* @param rawOrderInSnId
* @return
*/
public int deleteSparePartsInStorageByRawOrderInSnId(String rawOrderInSnId);
/**
*
*
* @param rawOrderInSnIds
* @return
*/
public int deleteSparePartsInStorageByRawOrderInSnIds(String[] rawOrderInSnIds);
}

@ -87,4 +87,9 @@ public interface SparePartsLedgerMapper {
void updateAmount(SparePartsLedger sparePartsLedger);
SparePartsLedger selectExistByMaterialCode(String materialCode);
SparePartsLedger selectSpareDetailBySpareCode(String materialCode);
//检查spareCode
String checkSpareCodeUnique(SparePartsLedger sparePartsLedger);
}

@ -138,4 +138,6 @@ public interface IDevicePDAService {
*
*/
AjaxResult selectEquFaultReasonList(EquFaultReason equFaultReason);
AjaxResult selectSpareDetailBySpareCode(String spareCode);
}

@ -2,7 +2,8 @@ package com.op.device.service;
import java.util.List;
import com.op.device.domain.SparePartsInStorage;
import com.op.common.core.web.domain.AjaxResult;
import com.op.device.domain.EquSparepartsInOut;
/**
* Service
@ -10,14 +11,14 @@ import com.op.device.domain.SparePartsInStorage;
* @author Open Platform
* @date 2023-10-17
*/
public interface ISparePartsInOutStorageService {
public interface IEquSparepartsInOutService {
/**
*
*
* @param rawOrderInSnId
* @param Id
* @return
*/
public SparePartsInStorage selectSparePartsInStorageByRawOrderInSnId(String rawOrderInSnId);
public EquSparepartsInOut selectEquSparepartsInOutById(String Id);
/**
*
@ -25,7 +26,7 @@ public interface ISparePartsInOutStorageService {
* @param sparePartsInStorage
* @return
*/
public List<SparePartsInStorage> selectSparePartsInStorageList(SparePartsInStorage sparePartsInStorage);
public List<EquSparepartsInOut> selectEquSparepartsInOutList(EquSparepartsInOut sparePartsInStorage);
/**
*
@ -33,7 +34,7 @@ public interface ISparePartsInOutStorageService {
* @param sparePartsInStorage
* @return
*/
public int insertSparePartsInStorage(SparePartsInStorage sparePartsInStorage);
public AjaxResult insertEquSparepartsInOut(EquSparepartsInOut sparePartsInStorage);
/**
*
@ -41,21 +42,21 @@ public interface ISparePartsInOutStorageService {
* @param sparePartsInStorage
* @return
*/
public int updateSparePartsInStorage(SparePartsInStorage sparePartsInStorage);
public AjaxResult updateEquSparepartsInOut(EquSparepartsInOut sparePartsInStorage);
/**
*
*
* @param rawOrderInSnIds
* @param ids
* @return
*/
public int deleteSparePartsInStorageByRawOrderInSnIds(String[] rawOrderInSnIds);
public AjaxResult deleteEquSparepartsInOutByIds(String[] ids);
/**
*
*
* @param rawOrderInSnId
* @param id
* @return
*/
public int deleteSparePartsInStorageByRawOrderInSnId(String rawOrderInSnId);
public AjaxResult deleteEquSparepartsInOutById(String id);
}

@ -61,4 +61,7 @@ public interface ISparePartsLedgerService {
public int deleteSparePartsLedgerByStorageId(String storageId);
AjaxResult importFile(List<SparePartsLedger> orderList);
//判断备品备件编码唯一性
boolean checkSpareCodeUnique(SparePartsLedger sparePartsLedger);
}

@ -111,48 +111,48 @@ public class DevicePDAServiceImpl implements IDevicePDAService {
@DS("#header.poolName")
public AjaxResult getTodayTask(PDADTO pdadto) {
List<EquOrder> orderList = equOrderMapper.selectTodayTask(pdadto);
List<EquOrder> handleList = new ArrayList<>();
long nowTime = DateUtils.getNowDate().getTime();
long dayMs = 86400000l;
long hourMs = 1000 * 60 * 60;
if (orderList != null) {
for (EquOrder order : orderList) {
long diff = nowTime - order.getCreateTime().getTime();
switch (order.getPlanLoopType()) {
case "hour":
if (diff < 1000 * 60 * 60 * Long.valueOf(order.getPlanLoop())) {
handleList.add(order);
}
break;
case "day":
if (diff < (dayMs * Long.valueOf(order.getPlanLoop()))) {
handleList.add(order);
}
break;
case "week":
if (diff < (dayMs * 7 * Long.valueOf(order.getPlanLoop()))) {
handleList.add(order);
}
break;
case "month":
if (diff < (dayMs * 30 * Long.valueOf(order.getPlanLoop()))) {
handleList.add(order);
}
break;
case "season":
if (diff < (dayMs * 30 * 3 * Long.valueOf(order.getPlanLoop()))) {
handleList.add(order);
}
break;
case "year":
if (diff < (dayMs * 365 * Long.valueOf(order.getPlanLoop()))) {
handleList.add(order);
}
break;
}
}
}
return success(handleList);
// List<EquOrder> handleList = new ArrayList<>();
// long nowTime = DateUtils.getNowDate().getTime();
// long dayMs = 86400000l;
// long hourMs = 1000 * 60 * 60;
// if (orderList != null) {
// for (EquOrder order : orderList) {
// long diff = nowTime - order.getCreateTime().getTime();
// switch (order.getPlanLoopType()) {
// case "hour":
// if (diff < 1000 * 60 * 60 * Long.valueOf(order.getPlanLoop())) {
// handleList.add(order);
// }
// break;
// case "day":
// if (diff < (dayMs * Long.valueOf(order.getPlanLoop()))) {
// handleList.add(order);
// }
// break;
// case "week":
// if (diff < (dayMs * 7 * Long.valueOf(order.getPlanLoop()))) {
// handleList.add(order);
// }
// break;
// case "month":
// if (diff < (dayMs * 30 * Long.valueOf(order.getPlanLoop()))) {
// handleList.add(order);
// }
// break;
// case "season":
// if (diff < (dayMs * 30 * 3 * Long.valueOf(order.getPlanLoop()))) {
// handleList.add(order);
// }
// break;
// case "year":
// if (diff < (dayMs * 365 * Long.valueOf(order.getPlanLoop()))) {
// handleList.add(order);
// }
// break;
// }
// }
// }
return success(orderList);
}
/**
@ -1211,4 +1211,17 @@ public class DevicePDAServiceImpl implements IDevicePDAService {
List<EquFaultReason> list = equFaultReasonMapper.selectEquFaultReasonList(equFaultReason);
return success(list);
}
/**
*
*
* @param
* @return
*/
@Override
@DS("#header.poolName")
public AjaxResult selectSpareDetailBySpareCode(String spareCode) {
SparePartsLedger list = sparePartsLedgerMapper.selectSpareDetailBySpareCode(spareCode);
return success(list);
}
}

@ -0,0 +1,212 @@
package com.op.device.service.impl;
import java.math.BigDecimal;
import java.util.List;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.op.common.core.utils.DateUtils;
import com.op.common.core.utils.uuid.IdUtils;
import com.op.common.core.web.domain.AjaxResult;
import com.op.common.security.utils.SecurityUtils;
import com.op.device.domain.SparePartsLedger;
import com.op.device.mapper.SparePartsLedgerMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.op.device.mapper.EquSparepartsInOutMapper;
import com.op.device.domain.EquSparepartsInOut;
import com.op.device.service.IEquSparepartsInOutService;
/**
* Service
*
* @author Open Platform
* @date 2023-10-17
*/
@Service
public class EquSparepartsInOutImpl implements IEquSparepartsInOutService {
@Autowired
private EquSparepartsInOutMapper equSparepartsInOutMapper;
@Autowired
private SparePartsLedgerMapper sparePartsLedgerMapper;
/**
*
*
* @param id
* @return
*/
@Override
@DS("#header.poolName")
public EquSparepartsInOut selectEquSparepartsInOutById(String id) {
return equSparepartsInOutMapper.selectEquSparepartsInOutById(id);
}
/**
*
*
* @param equSparepartsInOut
* @return
*/
@Override
@DS("#header.poolName")
public List<EquSparepartsInOut> selectEquSparepartsInOutList(EquSparepartsInOut equSparepartsInOut) {
return equSparepartsInOutMapper.selectEquSparepartsInOutList(equSparepartsInOut);
}
/**
*
*
* @param equSparepartsInOut
* @return
*/
@Override
@DS("#header.poolName")
public AjaxResult insertEquSparepartsInOut(EquSparepartsInOut equSparepartsInOut) {
equSparepartsInOut.setId(IdUtils.fastSimpleUUID());
equSparepartsInOut.setCreateTime(DateUtils.getNowDate());
equSparepartsInOut.setCreateBy(SecurityUtils.getUsername());
SparePartsLedger sparePartsLedger = sparePartsLedgerMapper.selectSparePartsLedgerByStorageId(equSparepartsInOut.getStorageId());
if(sparePartsLedger != null){
if(equSparepartsInOut.getInOutType().equals("type_in")){//入库
if(sparePartsLedger.getAmount() != null){
BigDecimal result = sparePartsLedger.getAmount().add(equSparepartsInOut.getAmount());
//修改
sparePartsLedger.setAmount(result);
sparePartsLedger.setLastModifiedBy(SecurityUtils.getUsername());//最后更新人
sparePartsLedger.setGmtModified(DateUtils.getNowDate());//最后更新时间
sparePartsLedgerMapper.updateSparePartsLedger(sparePartsLedger);
}
}else{//出库
if(sparePartsLedger.getAmount() != null){
if(sparePartsLedger.getAmount().compareTo(equSparepartsInOut.getAmount()) <= 0){
return AjaxResult.error("出库数量大于库存数量!");
}else{
BigDecimal result = sparePartsLedger.getAmount().subtract(equSparepartsInOut.getAmount());
//修改
sparePartsLedger.setAmount(result);
sparePartsLedger.setLastModifiedBy(SecurityUtils.getUsername());//最后更新人
sparePartsLedger.setGmtModified(DateUtils.getNowDate());//最后更新时间
sparePartsLedgerMapper.updateSparePartsLedger(sparePartsLedger);
}
}
}
}else{
return AjaxResult.error("不存在此备品备件");
}
// 获取流水号
String date = DateUtils.dateTimeNow(DateUtils.YYYYMMDD);
String serialNum = String.format("%04d", equSparepartsInOutMapper.selectSerialNumber());
equSparepartsInOut.setOrderNo(date + serialNum);
equSparepartsInOutMapper.insertEquSparepartsInOut(equSparepartsInOut);
return AjaxResult.success("新增成功!");
}
/**
*
*
* @param equSparepartsInOut
* @return
*/
@Override
@DS("#header.poolName")
public AjaxResult updateEquSparepartsInOut(EquSparepartsInOut equSparepartsInOut) {
equSparepartsInOut.setUpdateTime(DateUtils.getNowDate());
equSparepartsInOut.setUpdateBy(SecurityUtils.getUsername());
equSparepartsInOutMapper.updateEquSparepartsInOut(equSparepartsInOut);
return AjaxResult.success("修改成功");
}
/**
*
*
* @param ids
* @return
*/
@Override
@DS("#header.poolName")
public AjaxResult deleteEquSparepartsInOutByIds(String[] ids) {
//查询原本的类型和数量 加回去
for(String id:ids){
EquSparepartsInOut equSparepartsInOut = equSparepartsInOutMapper.selectEquSparepartsInOutById(id);
SparePartsLedger sparePartsLedger = sparePartsLedgerMapper.selectSparePartsLedgerByStorageId(equSparepartsInOut.getStorageId());
if(sparePartsLedger != null){
if(equSparepartsInOut.getInOutType().equals("type_in")){//入库
if(sparePartsLedger.getAmount() != null){
if(sparePartsLedger.getAmount().compareTo(equSparepartsInOut.getAmount()) <= 0){
return AjaxResult.error("备品备件台账的备品备件数量小于当时的入库数量!");
}else{
BigDecimal result = sparePartsLedger.getAmount().subtract(equSparepartsInOut.getAmount());
//修改
sparePartsLedger.setAmount(result);
sparePartsLedger.setLastModifiedBy(SecurityUtils.getUsername());//最后更新人
sparePartsLedger.setGmtModified(DateUtils.getNowDate());//最后更新时间
sparePartsLedgerMapper.updateSparePartsLedger(sparePartsLedger);
}
}
}else{//出库
if(sparePartsLedger.getAmount() != null){
BigDecimal result = sparePartsLedger.getAmount().add(equSparepartsInOut.getAmount());
//修改
sparePartsLedger.setAmount(result);
sparePartsLedger.setLastModifiedBy(SecurityUtils.getUsername());//最后更新人
sparePartsLedger.setGmtModified(DateUtils.getNowDate());//最后更新时间
sparePartsLedgerMapper.updateSparePartsLedger(sparePartsLedger);
}
}
}else{
return AjaxResult.error("不存在此备品备件");
}
}
equSparepartsInOutMapper.deleteEquSparepartsInOutByIds(ids);
return AjaxResult.success("删除成功");
}
/**
*
*
* @param id
* @return
*/
@Override
@DS("#header.poolName")
public AjaxResult deleteEquSparepartsInOutById(String id) {
EquSparepartsInOut equSparepartsInOut = equSparepartsInOutMapper.selectEquSparepartsInOutById(id);
SparePartsLedger sparePartsLedger = sparePartsLedgerMapper.selectSparePartsLedgerByStorageId(equSparepartsInOut.getStorageId());
if(sparePartsLedger != null){
if(equSparepartsInOut.getInOutType().equals("type_in")){//入库
if(sparePartsLedger.getAmount() != null){
if(sparePartsLedger.getAmount().compareTo(equSparepartsInOut.getAmount()) <= 0){
return AjaxResult.error("备品备件台账的备品备件数量小于当时的入库数量!");
}else{
BigDecimal result = sparePartsLedger.getAmount().subtract(equSparepartsInOut.getAmount());
//修改
sparePartsLedger.setAmount(result);
sparePartsLedger.setLastModifiedBy(SecurityUtils.getUsername());//最后更新人
sparePartsLedger.setGmtModified(DateUtils.getNowDate());//最后更新时间
sparePartsLedgerMapper.updateSparePartsLedger(sparePartsLedger);
}
}
}else{//出库
if(sparePartsLedger.getAmount() != null){
BigDecimal result = sparePartsLedger.getAmount().add(equSparepartsInOut.getAmount());
//修改
sparePartsLedger.setAmount(result);
sparePartsLedger.setLastModifiedBy(SecurityUtils.getUsername());//最后更新人
sparePartsLedger.setGmtModified(DateUtils.getNowDate());//最后更新时间
sparePartsLedgerMapper.updateSparePartsLedger(sparePartsLedger);
}
}
}else{
return AjaxResult.error("不存在此备品备件");
}
equSparepartsInOutMapper.deleteEquSparepartsInOutById(id);
return AjaxResult.success("删除成功");
}
}

@ -1,95 +0,0 @@
package com.op.device.service.impl;
import java.util.List;
import com.baomidou.dynamic.datasource.annotation.DS;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.op.device.mapper.SparePartsInOutStorageMapper;
import com.op.device.domain.SparePartsInStorage;
import com.op.device.service.ISparePartsInOutStorageService;
/**
* Service
*
* @author Open Platform
* @date 2023-10-17
*/
@Service
public class SparePartsInOutStorageServiceImpl implements ISparePartsInOutStorageService {
@Autowired
private SparePartsInOutStorageMapper sparePartsInOutStorageMapper;
/**
*
*
* @param rawOrderInSnId
* @return
*/
@Override
@DS("#header.poolName")
public SparePartsInStorage selectSparePartsInStorageByRawOrderInSnId(String rawOrderInSnId) {
return sparePartsInOutStorageMapper.selectSparePartsInStorageByRawOrderInSnId(rawOrderInSnId);
}
/**
*
*
* @param sparePartsInStorage
* @return
*/
@Override
@DS("#header.poolName")
public List<SparePartsInStorage> selectSparePartsInStorageList(SparePartsInStorage sparePartsInStorage) {
return sparePartsInOutStorageMapper.selectSparePartsInStorageList(sparePartsInStorage);
}
/**
*
*
* @param sparePartsInStorage
* @return
*/
@Override
@DS("#header.poolName")
public int insertSparePartsInStorage(SparePartsInStorage sparePartsInStorage) {
return sparePartsInOutStorageMapper.insertSparePartsInStorage(sparePartsInStorage);
}
/**
*
*
* @param sparePartsInStorage
* @return
*/
@Override
@DS("#header.poolName")
public int updateSparePartsInStorage(SparePartsInStorage sparePartsInStorage) {
return sparePartsInOutStorageMapper.updateSparePartsInStorage(sparePartsInStorage);
}
/**
*
*
* @param rawOrderInSnIds
* @return
*/
@Override
@DS("#header.poolName")
public int deleteSparePartsInStorageByRawOrderInSnIds(String[] rawOrderInSnIds) {
return sparePartsInOutStorageMapper.deleteSparePartsInStorageByRawOrderInSnIds(rawOrderInSnIds);
}
/**
*
*
* @param rawOrderInSnId
* @return
*/
@Override
@DS("#header.poolName")
public int deleteSparePartsInStorageByRawOrderInSnId(String rawOrderInSnId) {
return sparePartsInOutStorageMapper.deleteSparePartsInStorageByRawOrderInSnId(rawOrderInSnId);
}
}

@ -167,6 +167,9 @@ public class SparePartsLedgerServiceImpl implements ISparePartsLedgerService {
if (table.getMaterialCode().isEmpty() || table.getMaterialCode() == null) {
return error(500, "备品备件编码不能为空!信息导入失败!");
}
if (this.checkSpareCodeUnique(table)) {
return AjaxResult.error("存在重复的备品备件编码"+table.getMaterialCode()+"!信息导入失败!");
}
// 备品备件名称
if (table.getMaterialDesc().isEmpty() || table.getMaterialDesc() == null) {
return error(500, "备品备件名称不能为空!信息导入失败!");
@ -245,4 +248,20 @@ public class SparePartsLedgerServiceImpl implements ISparePartsLedgerService {
}
return failSpareParts;
}
/**
*
*
* @return
*/
@Override
@DS("#header.poolName")
public boolean checkSpareCodeUnique(SparePartsLedger sparePartsLedger) {
String spareCode = sparePartsLedgerMapper.checkSpareCodeUnique(sparePartsLedger);
if (spareCode == null) {
return false;
} else {
return true;
}
}
}

@ -22,6 +22,7 @@
<result property="orderStatus" column="order_status"/>
<result property="orderCost" column="order_cost"/>
<result property="planPerson" column="plan_person"/>
<result property="planPersonName" column="plan_person_name"/>
<result property="orderCostTime" column="order_cost_time"/>
<result property="orderSignPerson" column="order_sign_person"/>
<result property="factoryCode" column="factory_code"/>
@ -54,7 +55,7 @@
<sql id="selectEquOrderVo">
select order_id, plan_id, plan_code, plan_type, order_code, plan_workshop, plan_prod_line, plan_loop, plan_loop_type,
plan_loop_start, plan_loop_end, order_start, order_end, equipment_code, order_status,
order_cost, plan_person, order_cost_time, order_sign_person,
order_cost, plan_person, plan_person_name, order_cost_time, order_sign_person,
factory_code, attr1, attr2, attr3, del_flag, create_by, create_time,
update_by, update_time,upkeep,calculation_rule,shut_down,order_inspect,repair_code,work_code,outsource_code
from equ_order
@ -79,6 +80,7 @@
eo.order_status,
eo.order_cost,
eo.plan_person,
eo.plan_person_name,
eo.order_cost_time,
eo.order_sign_person,
eo.factory_code,
@ -120,6 +122,7 @@
<if test="orderStatus != null and orderStatus != ''">and eo.order_status = #{orderStatus}</if>
<if test="orderCost != null ">and eo.order_cost = #{orderCost}</if>
<if test="planPerson != null and planPerson != ''">and eo.plan_person like concat('%', #{planPerson}, '%')</if>
<if test="planPersonName != null and planPersonName != ''">and eo.plan_person_name like concat('%', #{planPersonName}, '%')</if>
<if test="orderCostTime != null and orderCostTime != ''">and eo.order_cost_time = #{orderCostTime}</if>
<if test="orderSignPerson != null and orderSignPerson != ''">and eo.order_sign_person = #{orderSignPerson}</if>
<if test="factoryCode != null and factoryCode != ''">and eo.factory_code = #{factoryCode}</if>
@ -198,6 +201,7 @@
eo.order_status,
eo.order_cost,
eo.plan_person,
eo.plan_person_name,
eo.order_cost_time,
eo.order_sign_person,
eo.factory_code,
@ -219,14 +223,18 @@
be.equipment_name
from equ_order eo
left join base_equipment be on eo.equipment_code = be.equipment_code
where eo.plan_type = #{planType}
and eo.del_flag = '0'
and eo.order_status != '1'
and eo.order_code in (select order_code
<where>
<if test="createTime == null ">CONVERT(date,eo.create_time) = CONVERT(date,GETDATE())</if>
<if test="createTime != null"> CONVERT(date,eo.create_time) = #{createTime}</if>
and eo.plan_type = #{planType}
and eo.del_flag = '0'
and eo.order_status != '1'
and eo.order_code in (select order_code
from equ_order_person
where del_flag = '0'
and user_name = #{userId}
GROUP BY order_code)
</where>
order by eo.plan_loop_type, eo.plan_loop, eo.create_time desc, eo.equipment_code
</select>
@ -248,6 +256,7 @@
eo.order_status,
eo.order_cost,
eo.plan_person,
eo.plan_person_name,
eo.order_cost_time,
eo.order_sign_person,
eo.factory_code,
@ -269,14 +278,18 @@
be.equipment_name
from equ_order eo
left join base_equipment be on eo.equipment_code = be.equipment_code
where eo.del_flag = '0'
and eo.order_status = '1'
and eo.plan_type = #{planType}
and eo.plan_person = #{userId}
and eo.order_code in (select order_code
<where>
<if test="createTime == null ">CONVERT(date,eo.create_time) = CONVERT(date,GETDATE())</if>
<if test="createTime != null">and CONVERT(date,eo.create_time) = #{createTime}</if>
and eo.del_flag = '0'
and eo.order_status = '1'
and eo.plan_type = #{planType}
and eo.plan_person = #{userId}
and eo.order_code in (select order_code
from equ_order_person
where del_flag = '0' and user_name = #{userId}
GROUP BY order_code)
</where>
order by eo.update_time desc
</select>
@ -304,6 +317,7 @@
<if test="orderStatus != null">order_status,</if>
<if test="orderCost != null">order_cost,</if>
<if test="planPerson != null">plan_person,</if>
<if test="planPersonName != null">plan_person_name,</if>
<if test="orderCostTime != null">order_cost_time,</if>
<if test="orderSignPerson != null">order_sign_person,</if>
<if test="factoryCode != null">factory_code,</if>
@ -343,6 +357,7 @@
<if test="orderStatus != null">#{orderStatus},</if>
<if test="orderCost != null">#{orderCost},</if>
<if test="planPerson != null">#{planPerson},</if>
<if test="planPersonName != null">#{planPersonName},</if>
<if test="orderCostTime != null">#{orderCostTime},</if>
<if test="orderSignPerson != null">#{orderSignPerson},</if>
<if test="factoryCode != null">#{factoryCode},</if>
@ -384,6 +399,7 @@
<if test="orderStatus != null">order_status = #{orderStatus},</if>
<if test="orderCost != null">order_cost = #{orderCost},</if>
<if test="planPerson != null">plan_person = #{planPerson},</if>
<if test="planPersonName != null">plan_person_name = #{planPersonName},</if>
<if test="orderCostTime != null">order_cost_time = #{orderCostTime},</if>
<if test="orderSignPerson != null">order_sign_person = #{orderSignPerson},</if>
<if test="factoryCode != null">factory_code = #{factoryCode},</if>

@ -16,6 +16,7 @@
<result property="workPlanDownTime" column="work_plan_down_time"/>
<result property="orderRelevance" column="order_relevance"/>
<result property="workPerson" column="work_person"/>
<result property="workPersonName" column="work_person_name"/>
<result property="workTeam" column="work_team"/>
<result property="workOutsource" column="work_outsource"/>
<result property="workDownMachine" column="work_down_machine"/>
@ -91,7 +92,7 @@
</sql>
<sql id="selectEquRepairWorkOrderVo">
select work_id, order_id, order_code, work_code,work_handle, work_plan_time, work_plan_down_time, order_relevance, work_person, work_team, work_outsource, work_down_machine, equipment_code, work_reason, work_fault_desc, work_start_time,work_end_time,work_cost_time, work_cost, work_status,out_work_id, out_work_code, attr1, attr2, attr3, create_by, create_time, update_time, update_by, del_flag, factory_code , fault_type , equipment_status_description , repair_measures , fault_down_time , fault_start_time ,result_inspect from equ_repair_work_order
select work_id, order_id, order_code, work_code,work_handle, work_plan_time, work_plan_down_time, order_relevance, work_person, work_team, work_outsource, work_down_machine, equipment_code, work_reason, work_fault_desc, work_start_time,work_end_time,work_cost_time, work_cost, work_status,out_work_id, out_work_code, attr1, attr2, attr3, create_by, create_time, update_time, update_by, del_flag, factory_code , fault_type , equipment_status_description , repair_measures , fault_down_time , fault_start_time ,result_inspect,work_person_name from equ_repair_work_order
</sql>
<select id="selectEquRepairWorkOrderList" parameterType="EquRepairWorkOrder" resultMap="EquRepairWorkOrderResult">
@ -105,6 +106,7 @@
erwo.work_plan_down_time,
erwo.order_relevance,
erwo.work_person,
erwo.work_person_name,
erwo.work_team,
erwo.work_outsource,
erwo.work_down_machine,
@ -165,9 +167,8 @@
CONVERT(date,erwo.work_plan_down_time)
</if>
<!--维修人员 维修组-->
<if test="workPerson != null and workPerson != ''">and erwo.work_person like concat('%', #{workPerson},
'%')
</if>
<if test="workPerson != null and workPerson != ''">and erwo.work_person like concat('%', #{workPerson},'%')</if>
<if test="workPersonName != null and workPersonName != ''">and erwo.work_person_name like concat('%', #{workPersonName},'%')</if>
<if test="workTeam != null and workTeam != ''">and erwo.work_team like concat('%', #{workTeam}, '%')</if>
<!--是否委外 委外工单编码-->
<if test="workOutsource != null and workOutsource != ''">and erwo.work_outsource = #{workOutsource}</if>
@ -203,6 +204,7 @@
erwo.work_plan_down_time,
erwo.order_relevance,
erwo.work_person,
erwo.work_person_name,
erwo.work_team,
erwo.work_outsource,
erwo.work_down_machine,
@ -257,6 +259,7 @@
erwo.work_plan_down_time,
erwo.order_relevance,
erwo.work_person,
erwo.work_person_name,
erwo.work_team,
erwo.work_outsource,
erwo.work_down_machine,
@ -325,6 +328,7 @@
<if test="workPlanDownTime != null">work_plan_down_time,</if>
<if test="orderRelevance != null">order_relevance,</if>
<if test="workPerson != null">work_person,</if>
<if test="workPersonName != null">work_person_name,</if>
<if test="workTeam != null">work_team,</if>
<if test="workOutsource != null">work_outsource,</if>
<if test="workDownMachine != null">work_down_machine,</if>
@ -367,6 +371,7 @@
<if test="workPlanDownTime != null">#{workPlanDownTime},</if>
<if test="orderRelevance != null">#{orderRelevance},</if>
<if test="workPerson != null">#{workPerson},</if>
<if test="workPersonName != null">#{workPersonName},</if>
<if test="workTeam != null">#{workTeam},</if>
<if test="workOutsource != null">#{workOutsource},</if>
<if test="workDownMachine != null">#{workDownMachine},</if>
@ -412,6 +417,7 @@
work_plan_down_time = #{workPlanDownTime},
<if test="orderRelevance != null">order_relevance = #{orderRelevance},</if>
<if test="workPerson != null">work_person = #{workPerson},</if>
<if test="workPersonName != null">work_person_name = #{workPersonName},</if>
<if test="workTeam != null">work_team = #{workTeam},</if>
<if test="workOutsource != null">work_outsource = #{workOutsource},</if>
<if test="workDownMachine != null">work_down_machine = #{workDownMachine},</if>

@ -0,0 +1,135 @@
<?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.op.device.mapper.EquSparepartsInOutMapper">
<resultMap type="EquSparepartsInOut" id="EquSparepartsInOutResult">
<result property="id" column="id"/>
<result property="inOutType" column="in_out_type"/>
<result property="orderNo" column="order_no"/>
<result property="spareCode" column="spare_code"/>
<result property="spareName" column="spare_name"/>
<result property="amount" column="amount"/>
<result property="attr1" column="attr1"/>
<result property="attr2" column="attr2"/>
<result property="attr3" column="attr3"/>
<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="delFlag" column="del_flag"/>
<result property="factoryCode" column="factory_code"/>
<result property="storageId" column="storage_id" />
</resultMap>
<sql id="selectEquSparepartsInOutVo">
select id, in_out_type, order_no,spare_code, spare_name ,amount, attr1, attr2, attr3, create_by, create_time, update_by, update_time, del_flag, factory_code,storage_id from equ_spareparts_in_out
</sql>
<select id="selectEquSparepartsInOutList" parameterType="EquSparepartsInOut" resultMap="EquSparepartsInOutResult">
<include refid="selectEquSparepartsInOutVo"/>
<where>
<if test="inOutType != null and inOutType != ''">and in_out_type = #{inOutType}</if>
<if test="orderNo != null and orderNo != ''">and order_no = #{orderNo}</if>
<if test="spareCode != null and spareCode != ''">and spare_code = #{spareCode}</if>
<if test="spareName != null and spareName != ''">and spare_name = #{spareName}</if>
<if test="amount != null ">and amount = #{amount}</if>
<if test="attr1 != null and attr1 != ''">and attr1 = #{attr1}</if>
<if test="attr2 != null and attr2 != ''">and attr2 = #{attr2}</if>
<if test="attr3 != null and attr3 != ''">and attr3 = #{attr3}</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>
<if test="delFlag != null and delFlag != ''">and del_flag = #{delFlag}</if>
<if test="factoryCode != null and factoryCode != ''">and factory_code = #{factoryCode}</if>
</where>
</select>
<select id="selectEquSparepartsInOutById" parameterType="String" resultMap="EquSparepartsInOutResult">
<include refid="selectEquSparepartsInOutVo"/>
where id = #{id}
</select>
<insert id="insertEquSparepartsInOut" parameterType="EquSparepartsInOut">
insert into equ_spareparts_in_out
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id != null">id,</if>
<if test="inOutType != null">in_out_type,</if>
<if test="orderNo != null">order_no,</if>
<if test="spareCode != null">spare_code,</if>
<if test="spareName != null">spare_name,</if>
amount,
<if test="attr1 != null">attr11,</if>
<if test="attr2 != null">attr12,</if>
<if test="attr3 != null">attr13,</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="delFlag != null">del_flag,</if>
<if test="factoryCode != null">factory_code,</if>
<if test="storageId != null and storageId != ''">storage_id,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="id != null">#{id},</if>
<if test="inOutType != null">#{inOutType},</if>
<if test="orderNo != null">#{orderNo},</if>
<if test="spareCode != null">#{spareCode},</if>
<if test="spareName != null">#{spareName},</if>
#{amount},
<if test="attr1 != null">#{attr1},</if>
<if test="attr2 != null">#{attr2},</if>
<if test="attr3 != null">#{attr3},</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="delFlag != null">#{delFlag},</if>
<if test="factoryCode != null">#{factoryCode},</if>
<if test="storageId != null and storageId != ''">#{storageId},</if>
</trim>
</insert>
<update id="updateEquSparepartsInOut" parameterType="EquSparepartsInOut">
update equ_spareparts_in_out
<trim prefix="SET" suffixOverrides=",">
<if test="inOutType != null">in_out_type = #{inOutType},</if>
<if test="orderNo != null">order_no = #{orderNo},</if>
<if test="spareCode != null">spare_code = #{spareCode},</if>
<if test="spareName != null">spare_name = #{spareName},</if>
<if test="amount != null">amount = #{amount},</if>
<if test="attr1 != null">attr1 = #{attr1},</if>
<if test="attr2 != null">attr2 = #{attr2},</if>
<if test="attr3 != null">attr3 = #{attr3},</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="delFlag != null">del_flag = #{delFlag},</if>
<if test="factoryCode != null">factory_code = #{factoryCode},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteEquSparepartsInOutById" parameterType="String">
update equ_spareparts_in_out
set del_flag = '1'
where id = #{id}
</delete>
<delete id="deleteEquSparepartsInOutByIds" parameterType="String">
update equ_spareparts_in_out
set del_flag = '1'
where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
<select id="selectSerialNumber" resultType="java.lang.Integer">
SELECT COUNT(id)+1 AS serialNum
FROM equ_spareparts_in_out
WHERE CONVERT(date, GETDATE()) = CONVERT(date,create_time)
</select>
</mapper>

@ -1,188 +0,0 @@
<?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.op.device.mapper.SparePartsInOutStorageMapper">
<resultMap type="SparePartsInStorage" id="SparePartsInStorageResult">
<result property="rawOrderInSnId" column="raw_order_in_sn_id"/>
<result property="whCode" column="wh_code"/>
<result property="waCode" column="wa_code"/>
<result property="wlCode" column="wl_code"/>
<result property="orderNo" column="order_no"/>
<result property="poNo" column="po_no"/>
<result property="poLine" column="po_line"/>
<result property="materialCode" column="material_code"/>
<result property="materialDesc" column="material_desc"/>
<result property="sn" column="sn"/>
<result property="amount" column="amount"/>
<result property="userDefined1" column="user_defined1"/>
<result property="userDefined2" column="user_defined2"/>
<result property="userDefined3" column="user_defined3"/>
<result property="userDefined4" column="user_defined4"/>
<result property="userDefined5" column="user_defined5"/>
<result property="userDefined6" column="user_defined6"/>
<result property="userDefined7" column="user_defined7"/>
<result property="userDefined8" column="user_defined8"/>
<result property="userDefined9" column="user_defined9"/>
<result property="userDefined10" column="user_defined10"/>
<result property="createBy" column="create_by"/>
<result property="gmtCreate" column="gmt_create"/>
<result property="lastModifiedBy" column="last_modified_by"/>
<result property="gmtModified" column="gmt_modified"/>
<result property="activeFlag" column="active_flag"/>
<result property="factoryCode" column="factory_code"/>
<result property="sapFactoryCode" column="sap_factory_code"/>
</resultMap>
<sql id="selectSparePartsInStorageVo">
select raw_order_in_sn_id, wh_code, wa_code, wl_code, order_no, po_no, po_line, material_code, material_desc, sn, amount, user_defined1, user_defined2, user_defined3, user_defined4, user_defined5, user_defined6, user_defined7, user_defined8, user_defined9, user_defined10, create_by, gmt_create, last_modified_by, gmt_modified, active_flag, factory_code, sap_factory_code from wms_raw_order_in_sn
</sql>
<select id="selectSparePartsInStorageList" parameterType="SparePartsInStorage"
resultMap="SparePartsInStorageResult">
<include refid="selectSparePartsInStorageVo"/>
<where>
<if test="whCode != null and whCode != ''">and wh_code = #{whCode}</if>
<if test="waCode != null and waCode != ''">and wa_code = #{waCode}</if>
<if test="wlCode != null and wlCode != ''">and wl_code = #{wlCode}</if>
<if test="orderNo != null and orderNo != ''">and order_no = #{orderNo}</if>
<if test="poNo != null and poNo != ''">and po_no = #{poNo}</if>
<if test="poLine != null and poLine != ''">and po_line = #{poLine}</if>
<if test="materialCode != null and materialCode != ''">and material_code = #{materialCode}</if>
<if test="materialDesc != null and materialDesc != ''">and material_desc = #{materialDesc}</if>
<if test="sn != null and sn != ''">and sn = #{sn}</if>
<if test="amount != null ">and amount = #{amount}</if>
<if test="userDefined1 != null and userDefined1 != ''">and user_defined1 = #{userDefined1}</if>
<if test="userDefined2 != null and userDefined2 != ''">and user_defined2 = #{userDefined2}</if>
<if test="userDefined3 != null and userDefined3 != ''">and user_defined3 = #{userDefined3}</if>
<if test="userDefined4 != null and userDefined4 != ''">and user_defined4 = #{userDefined4}</if>
<if test="userDefined5 != null and userDefined5 != ''">and user_defined5 = #{userDefined5}</if>
<if test="userDefined6 != null and userDefined6 != ''">and user_defined6 = #{userDefined6}</if>
<if test="userDefined7 != null and userDefined7 != ''">and user_defined7 = #{userDefined7}</if>
<if test="userDefined8 != null and userDefined8 != ''">and user_defined8 = #{userDefined8}</if>
<if test="userDefined9 != null and userDefined9 != ''">and user_defined9 = #{userDefined9}</if>
<if test="userDefined10 != null and userDefined10 != ''">and user_defined10 = #{userDefined10}</if>
<if test="gmtCreate != null ">and gmt_create = #{gmtCreate}</if>
<if test="lastModifiedBy != null and lastModifiedBy != ''">and last_modified_by = #{lastModifiedBy}</if>
<if test="gmtModified != null ">and gmt_modified = #{gmtModified}</if>
<if test="activeFlag != null and activeFlag != ''">and active_flag = #{activeFlag}</if>
<if test="factoryCode != null and factoryCode != ''">and factory_code = #{factoryCode}</if>
<if test="sapFactoryCode != null and sapFactoryCode != ''">and sap_factory_code = #{sapFactoryCode}</if>
</where>
</select>
<select id="selectSparePartsInStorageByRawOrderInSnId" parameterType="String" resultMap="SparePartsInStorageResult">
<include refid="selectSparePartsInStorageVo"/>
where raw_order_in_sn_id = #{rawOrderInSnId}
</select>
<insert id="insertSparePartsInStorage" parameterType="SparePartsInStorage">
insert into wms_raw_order_in_sn
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="rawOrderInSnId != null">raw_order_in_sn_id,</if>
<if test="whCode != null">wh_code,</if>
<if test="waCode != null">wa_code,</if>
<if test="wlCode != null">wl_code,</if>
<if test="orderNo != null">order_no,</if>
<if test="poNo != null">po_no,</if>
<if test="poLine != null">po_line,</if>
<if test="materialCode != null">material_code,</if>
<if test="materialDesc != null">material_desc,</if>
<if test="sn != null">sn,</if>
<if test="amount != null">amount,</if>
<if test="userDefined1 != null">user_defined1,</if>
<if test="userDefined2 != null">user_defined2,</if>
<if test="userDefined3 != null">user_defined3,</if>
<if test="userDefined4 != null">user_defined4,</if>
<if test="userDefined5 != null">user_defined5,</if>
<if test="userDefined6 != null">user_defined6,</if>
<if test="userDefined7 != null">user_defined7,</if>
<if test="userDefined8 != null">user_defined8,</if>
<if test="userDefined9 != null">user_defined9,</if>
<if test="userDefined10 != null">user_defined10,</if>
<if test="createBy != null">create_by,</if>
<if test="gmtCreate != null">gmt_create,</if>
<if test="lastModifiedBy != null">last_modified_by,</if>
<if test="gmtModified != null">gmt_modified,</if>
<if test="activeFlag != null">active_flag,</if>
<if test="factoryCode != null">factory_code,</if>
<if test="sapFactoryCode != null">sap_factory_code,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="rawOrderInSnId != null">#{rawOrderInSnId},</if>
<if test="whCode != null">#{whCode},</if>
<if test="waCode != null">#{waCode},</if>
<if test="wlCode != null">#{wlCode},</if>
<if test="orderNo != null">#{orderNo},</if>
<if test="poNo != null">#{poNo},</if>
<if test="poLine != null">#{poLine},</if>
<if test="materialCode != null">#{materialCode},</if>
<if test="materialDesc != null">#{materialDesc},</if>
<if test="sn != null">#{sn},</if>
<if test="amount != null">#{amount},</if>
<if test="userDefined1 != null">#{userDefined1},</if>
<if test="userDefined2 != null">#{userDefined2},</if>
<if test="userDefined3 != null">#{userDefined3},</if>
<if test="userDefined4 != null">#{userDefined4},</if>
<if test="userDefined5 != null">#{userDefined5},</if>
<if test="userDefined6 != null">#{userDefined6},</if>
<if test="userDefined7 != null">#{userDefined7},</if>
<if test="userDefined8 != null">#{userDefined8},</if>
<if test="userDefined9 != null">#{userDefined9},</if>
<if test="userDefined10 != null">#{userDefined10},</if>
<if test="createBy != null">#{createBy},</if>
<if test="gmtCreate != null">#{gmtCreate},</if>
<if test="lastModifiedBy != null">#{lastModifiedBy},</if>
<if test="gmtModified != null">#{gmtModified},</if>
<if test="activeFlag != null">#{activeFlag},</if>
<if test="factoryCode != null">#{factoryCode},</if>
<if test="sapFactoryCode != null">#{sapFactoryCode},</if>
</trim>
</insert>
<update id="updateSparePartsInStorage" parameterType="SparePartsInStorage">
update wms_raw_order_in_sn
<trim prefix="SET" suffixOverrides=",">
<if test="whCode != null">wh_code = #{whCode},</if>
<if test="waCode != null">wa_code = #{waCode},</if>
<if test="wlCode != null">wl_code = #{wlCode},</if>
<if test="orderNo != null">order_no = #{orderNo},</if>
<if test="poNo != null">po_no = #{poNo},</if>
<if test="poLine != null">po_line = #{poLine},</if>
<if test="materialCode != null">material_code = #{materialCode},</if>
<if test="materialDesc != null">material_desc = #{materialDesc},</if>
<if test="sn != null">sn = #{sn},</if>
<if test="amount != null">amount = #{amount},</if>
<if test="userDefined1 != null">user_defined1 = #{userDefined1},</if>
<if test="userDefined2 != null">user_defined2 = #{userDefined2},</if>
<if test="userDefined3 != null">user_defined3 = #{userDefined3},</if>
<if test="userDefined4 != null">user_defined4 = #{userDefined4},</if>
<if test="userDefined5 != null">user_defined5 = #{userDefined5},</if>
<if test="userDefined6 != null">user_defined6 = #{userDefined6},</if>
<if test="userDefined7 != null">user_defined7 = #{userDefined7},</if>
<if test="userDefined8 != null">user_defined8 = #{userDefined8},</if>
<if test="userDefined9 != null">user_defined9 = #{userDefined9},</if>
<if test="userDefined10 != null">user_defined10 = #{userDefined10},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="gmtCreate != null">gmt_create = #{gmtCreate},</if>
<if test="lastModifiedBy != null">last_modified_by = #{lastModifiedBy},</if>
<if test="gmtModified != null">gmt_modified = #{gmtModified},</if>
<if test="activeFlag != null">active_flag = #{activeFlag},</if>
<if test="factoryCode != null">factory_code = #{factoryCode},</if>
<if test="sapFactoryCode != null">sap_factory_code = #{sapFactoryCode},</if>
</trim>
where raw_order_in_sn_id = #{rawOrderInSnId}
</update>
<delete id="deleteSparePartsInStorageByRawOrderInSnId" parameterType="String">
delete from wms_raw_order_in_sn where raw_order_in_sn_id = #{rawOrderInSnId}
</delete>
<delete id="deleteSparePartsInStorageByRawOrderInSnIds" parameterType="String">
delete from wms_raw_order_in_sn where raw_order_in_sn_id in
<foreach item="rawOrderInSnId" collection="array" open="(" separator="," close=")">
#{rawOrderInSnId}
</foreach>
</delete>
</mapper>

@ -381,4 +381,17 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
where material_code = #{materialCode}
and del_flag ='0'
</select>
<select id="selectSpareDetailBySpareCode" parameterType="String" resultMap="SparePartsLedgerResult">
<include refid="selectSparePartsLedgerVo"/>
where material_code = #{materialCode}
and del_flag ='0'
</select>
<select id="checkSpareCodeUnique" parameterType="SparePartsLedger" resultType="java.lang.String">
select material_code
from equ_spareparts_ledger
where material_code = #{materialCode}
and del_flag = '0'
</select>
</mapper>

@ -107,14 +107,19 @@ public class BaseMonitorInfo1ServiceImpl implements IBaseMonitorInfo1Service {
@Override
@DS("#header.poolName")
public int updateBaseMonitorInfo(BaseMonitorInfo baseMonitorInfo) {
// 异常处理:若设备停用则更新所有父级
if (StringUtils.isNotNull(baseMonitorInfo.getMonitorStatus()) && baseMonitorInfo.getMonitorStatus().equals(1L)){
this.updateAllBaseMonitorInfo();
}
List<BaseMonitorInfo> baseMonitorInfos = baseMonitorInfoMapper.checkMonitorIdLegal(baseMonitorInfo);
if (baseMonitorInfos.size() > 1) {
throw new ServiceException("计量设备编号重复:" + baseMonitorInfo.getMonitorId());
if (baseMonitorInfos.size() > 1){
throw new ServiceException("计量设备编号重复:" + baseMonitorInfo.getMonitorId());
}
try {
BaseMonitorInfo newParenMonitorInfo = baseMonitorInfoMapper.selectBaseMonitorInfoByObjid(baseMonitorInfo.getParentId());
BaseMonitorInfo oldDeptMonitorInfo = selectBaseMonitorInfoByObjid(baseMonitorInfo.getObjid());
if (StringUtils.isNotNull(newParenMonitorInfo) && StringUtils.isNotNull(oldDeptMonitorInfo)) {
if (StringUtils.isNotNull(newParenMonitorInfo) && StringUtils.isNotNull(oldDeptMonitorInfo))
{
String newAncestors = newParenMonitorInfo.getAncestors() + "," + oldDeptMonitorInfo.getMonitorId();
String oldAncestors = oldDeptMonitorInfo.getAncestors();
baseMonitorInfo.setAncestors(newAncestors);
@ -124,8 +129,8 @@ public class BaseMonitorInfo1ServiceImpl implements IBaseMonitorInfo1Service {
updateMonitorChildren(baseMonitorInfo.getMonitorId(), newAncestors, oldAncestors);
}
this.insertOrUpdateBaseTypeRelation(baseMonitorInfo.getMonitorId(), baseMonitorInfo.getBuildId(),
baseMonitorInfo.getBusinessId(), baseMonitorInfo.getSubentryId());
this.insertOrUpdateBaseTypeRelation(baseMonitorInfo.getMonitorId(),baseMonitorInfo.getBuildId(),
baseMonitorInfo.getBusinessId(),baseMonitorInfo.getSubentryId());
} catch (Exception e) {
e.printStackTrace();
}
@ -134,6 +139,33 @@ public class BaseMonitorInfo1ServiceImpl implements IBaseMonitorInfo1Service {
return baseMonitorInfoMapper.updateBaseMonitorInfo(baseMonitorInfo);
}
/**
*
*/
private void updateAllBaseMonitorInfo() {
List<BaseMonitorInfo> monitorInfoList = this.selectBaseMonitorInfoList(new BaseMonitorInfo());
for (BaseMonitorInfo baseMonitorInfo : monitorInfoList) {
BaseMonitorInfo newParenMonitorInfo = baseMonitorInfoMapper.selectBaseMonitorInfoByObjid(baseMonitorInfo.getParentId());
BaseMonitorInfo oldDeptMonitorInfo = selectBaseMonitorInfoByObjid(baseMonitorInfo.getObjid());
if (StringUtils.isNotNull(newParenMonitorInfo) && StringUtils.isNotNull(oldDeptMonitorInfo)) {
String newAncestors = newParenMonitorInfo.getAncestors() + "," + oldDeptMonitorInfo.getMonitorId();
String oldAncestors = oldDeptMonitorInfo.getAncestors();
baseMonitorInfo.setAncestors(newAncestors);
String[] split = baseMonitorInfo.getAncestors().split(",");
baseMonitorInfo.setGrade(split.length);
updateMonitorChildren(baseMonitorInfo.getMonitorId(), newAncestors, oldAncestors);
}
this.insertOrUpdateBaseTypeRelation(baseMonitorInfo.getMonitorId(), baseMonitorInfo.getBuildId(),
baseMonitorInfo.getBusinessId(), baseMonitorInfo.getSubentryId());
baseMonitorInfo.setUpdateTime(DateUtils.getNowDate());
baseMonitorInfo.setUpdateBy(SecurityUtils.getUsername());
baseMonitorInfoMapper.updateBaseMonitorInfo(baseMonitorInfo);
}
}
/**
*
*

@ -121,7 +121,7 @@
<select id="energyConsumptionReportByTime" resultType="java.util.Map">
select ert.pointTime, sum(isnull(ert.expend,0)) expend
from (
select left(rpd.begin_time, #{timeSub}) pointTime, rpd.expend
select left(CONVERT(VARCHAR(17), rpd.begin_time, 120), #{timeSub}) pointTime, rpd.expend
from report_point_dnb rpd
left join base_monitor_info m on m.monitor_id = rpd.monitor_id
<where>
@ -138,7 +138,7 @@
and rpd.begin_time between #{startTime} and #{endTime}
</if>
<if test="startDay != null and startDay != '' and endDay != null and endDay != ''">
and left(rpd.begin_time, 10) between #{startDay} and #{endDay}
and left(CONVERT(VARCHAR(17), rpd.begin_time, 120), 10) between #{startDay} and #{endDay}
</if>
</where>
) ert
@ -149,7 +149,7 @@
<select id="energyConsumptionAnalysisDetails" resultType="java.util.Map">
select ert.monitor_id, ert.monitor_name, ert.pointTime, sum(isnull(ert.expend,0)) expend
from (
select rpd.monitor_id, m.monitor_name, left(rpd.begin_time, 10) pointTime, rpd.expend
select rpd.monitor_id, m.monitor_name, left(CONVERT(VARCHAR(17), rpd.begin_time, 120), 10) pointTime, rpd.expend
from report_point_dnb rpd
left join base_monitor_info m on m.monitor_id = rpd.monitor_id
<where>
@ -167,7 +167,7 @@
<!-- and rpd.begin_time between #{params.beginCollectTime} and #{params.endCollectTime}-->
<!-- </if>-->
<if test="startDay != null and startDay != '' and endDay != null and endDay != ''">
and left(rpd.begin_time, 10) between #{startDay} and #{endDay}
and left(CONVERT(VARCHAR(17), rpd.begin_time, 120), 10) between #{startDay} and #{endDay}
</if>
</where>
) ert
@ -178,21 +178,21 @@
<select id="datePointDnbList" parameterType="ReportPointDnb" resultMap="ReportPointDnbDTOResult">
select ert.monitor_id,
ert.monitor_name,
CASE
CAST( CASE
WHEN #{params.timeSub} = 10 THEN ert.pointTime
WHEN #{params.timeSub} = 7 THEN concat(ert.pointTime, '-01')
WHEN #{params.timeSub} = 4 THEN concat(ert.pointTime, '-01-01')
END AS begin_time,
CASE
END AS datetime) AS begin_time,
CAST( CASE
WHEN #{params.timeSub} = 10 THEN ert.pointTime
WHEN #{params.timeSub} = 7 THEN LAST_DAY(concat(ert.pointTime, '-01'))
WHEN #{params.timeSub} = 4 THEN LAST_DAY(concat(ert.pointTime, '-12-01'))
END AS end_time,
WHEN #{params.timeSub} = 7 THEN EOMONTH(CONVERT(DATE, CONCAT(ert.pointTime, '-01')))
WHEN #{params.timeSub} = 4 THEN EOMONTH(CONVERT(DATE, CONCAT(ert.pointTime, '-12-01')))
END AS datetime) AS end_time,
sum(isnull(ert.expend,0)) expend,
max(ert.meter_value) meter_value,
max(ert.monitor_addr) address
from (
select rpd.monitor_id, m.monitor_name, left(rpd.begin_time, #{params.timeSub}) pointTime, rpd.expend,
select rpd.monitor_id, m.monitor_name, left(CONVERT(VARCHAR(17), rpd.begin_time, 120), #{params.timeSub}) pointTime, rpd.expend,
rpd.meter_value,m.monitor_addr
from report_point_dnb rpd
left join base_monitor_info m on m.monitor_id = rpd.monitor_id
@ -243,7 +243,7 @@
left join base_public_user bpu on bmp.public_share_id = bpu.id
<where>
<if test="beginCollectTime != null and beginCollectTime != '' and endCollectTime != null and endCollectTime != ''">
and left(rpd.begin_time,10) between #{beginCollectTime} and #{endCollectTime}
and left(CONVERT(VARCHAR(17), rpd.begin_time, 120)e,10) between #{beginCollectTime} and #{endCollectTime}
</if>
<if test="monitorIdList != null and monitorIdList.size > 0">
and rpd.monitor_id IN

@ -9,6 +9,15 @@ public class QuantityDto {
private String workorderCode;
private String machineCode;
private BigDecimal totalWorkTime;
private String board;
public String getBoard() {
return board;
}
public void setBoard(String board) {
this.board = board;
}
public BigDecimal getTotalWorkTime() {
return totalWorkTime;

@ -10,7 +10,9 @@ import com.op.common.core.web.domain.AjaxResult;
import com.op.mes.domain.MesLine;
import com.op.mes.domain.MesReportWork;
import com.op.mes.domain.ProOrderWorkorder;
import com.op.mes.domain.dto.QuantityDto;
import com.op.mes.mapper.MesMapper;
import com.op.mes.mapper.MesReportWorkMapper;
import com.op.mes.service.IMesBoradService;
import com.op.system.api.domain.dto.BoardDTO;
import com.op.system.api.domain.mes.ProOrderWorkorderDTO;
@ -28,6 +30,8 @@ public class MesBoradServiceImpl implements IMesBoradService {
@Autowired
private MesMapper mesMapper;
@Autowired
private MesReportWorkMapper mesReportWorkMapper;
@Override
public AjaxResult finishProductBoard(BoardDTO boardDTO) {
@ -110,17 +114,37 @@ public class MesBoradServiceImpl implements IMesBoradService {
BoardDTO workOrder = mesMapper.getWorkOrder(boardDTO);
boardDTO.setWorkorderCode(workOrder.getWorkorderCode());
boardDTO.setProductCode(workOrder.getProductCode());
MesLine meslineInfo = mesMapper.getMesLineInfo(boardDTO);
QuantityDto quantityDto = new QuantityDto();
quantityDto.setWorkorderCode(boardDTO.getWorkorderCode());
quantityDto.setMachineCode(boardDTO.getEquCode());
quantityDto.setBoard("1");
QuantityDto parentMesReport = mesReportWorkMapper.getRealQuantity(quantityDto);
QuantityDto sonMesReport = mesReportWorkMapper.getSumQuantity(quantityDto);
if(sonMesReport == null){//单层工单的情况
sonMesReport = mesReportWorkMapper.getSumQuantityOne(quantityDto);
}
if(sonMesReport != null){//实际用人
workOrder.setActMan(sonMesReport.getUseMan());
}else{
workOrder.setActMan(new BigDecimal("0"));
}
if(parentMesReport!=null){//实际效率 = 实际母单产量/子总工时
BigDecimal manAvgActual = new BigDecimal(parentMesReport.getQuantityFeedbackSum())
.divide(sonMesReport.getWorkTime(),2,BigDecimal.ROUND_HALF_UP);
workOrder.setActXl(manAvgActual);
}else{
workOrder.setActXl(new BigDecimal("0"));
}
if(meslineInfo != null){
workOrder.setStandarMan(meslineInfo.getStandarMan());
workOrder.setActMan(meslineInfo.getActMan());
workOrder.setStandarXl(meslineInfo.getStandarXl());
workOrder.setActXl(meslineInfo.getActXl());
}else{
workOrder.setStandarMan(new BigDecimal("0"));
workOrder.setActMan(new BigDecimal("0"));
workOrder.setStandarXl(new BigDecimal("0"));
workOrder.setActXl(new BigDecimal("0"));
}
dtoMap.put("workOrder",workOrder);

@ -451,22 +451,11 @@
<select id="getMesLineInfo" resultType="com.op.mes.domain.MesLine">
select
mlp.use_man standarMan,
ROUND(mlp.efficiency/bp.umrez,2) AS standarXl,
mr.use_man actMan,
mr.work_time,
mr2.quantity_feedback,
ROUND( mr2.quantity_feedback/mr.work_time,2) AS actXl
from (
select top 1 use_man,work_time,machine_code,report_code,product_code
from mes_report_work where del_flag = '0' and machine_code = #{equCode}
and workorder_code = #{workorderCode}
and parent_order !='0' order by create_time desc
) mr
left join mes_report_work mr2 on mr2.report_code = mr.report_code and mr2.parent_order ='0'
left join mes_line_product mlp on mlp.line_code = mr.machine_code and mr2.product_code = mlp.product_code
ROUND(mlp.efficiency/bp.umrez,2) AS standarXl
from mes_line_product mlp
left join base_product bp on bp.product_code=mlp.product_code
where mlp.line_code = #{equCode}
and mlp.del_flag='0' and mlp.del_flag='0'
where mlp.line_code = #{equCode} and mlp.product_code = #{productCode}
and mlp.del_flag='0' and bp.del_flag='0'
</select>
</mapper>

@ -709,7 +709,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
select sum(quantity_feedback) quantityFeedbackSum
from mes_report_work
where workorder_code = #{workorderCode} and del_flag = '0' and machine_code = #{machineCode}
<if test="board == null">
and upload_status = '1'
</if>
</select>
<select id="getSumQuantity" resultType="com.op.mes.domain.dto.QuantityDto">
@ -720,7 +722,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
sum(work_time*use_man) totalWorkTime
from mes_report_work
where parent_order = #{workorderCode} and del_flag = '0' and machine_code = #{machineCode}
<if test="board == null">
and upload_status = '1'
</if>
</select>
<select id="getSumQuantityOne" resultType="com.op.mes.domain.dto.QuantityDto">
@ -731,7 +735,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
sum(work_time*use_man) totalWorkTime
from mes_report_work
where workorder_code = #{workorderCode} and del_flag = '0' and machine_code = #{machineCode}
<if test="board == null">
and upload_status = '1'
</if>
</select>
<select id="selectMesReportWorkList_S" parameterType="MesReportWork" resultMap="MesReportWorkResult">

Loading…
Cancel
Save