Blame view

src/main/java/com/huaheng/pc/config/shipmentPreference/service/ShipmentPreferenceService.java 789 Bytes
pengcheng authored
1
package com.huaheng.pc.config.shipmentPreference.service;
2
3

import com.baomidou.mybatisplus.extension.service.IService;
pengcheng authored
4
import com.huaheng.pc.config.shipmentPreference.domain.ShipmentPreference;
5
6
7
import com.huaheng.pc.shipment.shipmentHeader.domain.ShipmentHeader;

import java.util.List;
pengcheng authored
8
9
10
11
public interface ShipmentPreferenceService extends IService<ShipmentPreference>{
12
    //查看出库此操作是否符合出库首选项的出库流程
13
    List<ShipmentHeader>  checkShipmentProcess(String ids, Integer status,String code);
14
mahuandong authored
15
16
17
18
19
20
21
22
    /**
     * 复制出库首选项表
     * @param warehouseCode 原仓库编码
     * @param newWarehouseCode 新仓库编码
     * @return 是否复制成功
     */
    boolean shipmentPreferenceCopy(String warehouseCode, String newWarehouseCode);
23
}