廖井涛
2025-02-27 1e685c19317c73c86ae0901742b54b51eeaa26ea
north-glass-erp/src/main/java/com/example/erp/mapper/pp/FlowCardMapper.java
@@ -2,6 +2,7 @@
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.example.erp.entity.pp.FlowCard;
import com.example.erp.entity.sd.OrderDetail;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
@@ -39,6 +40,8 @@
    //查询报工表内是否存在对应流程卡的数据
    Integer reportingWorkCount(String processId);
    Integer reportingWorkCountByOrderId(String orderId);
    //插入Flow_card表
    Boolean addFlowCardMp(String processId, Integer orderNumber, Integer landingSequence, Integer quantity, String productionId, String userName, Integer layer);
@@ -88,6 +91,8 @@
    Boolean updateComposing(String processId);
    Boolean updateProcessCardRack(String processId,String technologyNumber,String rack);
    List<Map<String, String>> getPrintLabel(String projectNo);
    List<Map<String, String>> getPrintLabel2(String projectNo);
@@ -131,6 +136,8 @@
    List<Map<String, String>> selectReworkPrintMp(Date selectTime1, Date selectTime2, FlowCard flowCard);
    List<Map<String, Object>> getDetailListLike(String processId, String technologyNumber, String process);
    List<Map<String, Object>> getDetailListMerge(String processId, String process);
    List<Map<String, Object>> getDetailListLikes(String processId, String technologyNumber, String process,String printProject,Integer quantity);
@@ -216,4 +223,16 @@
    Integer updateProjectProcessPrintCount(String projectNo);
    Integer selectProjectProcessPrintCount(String projectNo);
    int flowCardToOptimizeCount(String orderId);
    List<Map<String, Object>> getFlowCardDetail(String processId);
    Map<String,Object> getGlassThicknessByProdutionId(String orderId,String productionId);
    List<OrderDetail>  getOrderDetailByProductionId(String orderId, String productionId);
    Boolean revokeComposing(String processId);
    Integer selectProjectNo(String processId);
}