增加 半制品入库接口、成品入库、绑定接口
parent
a1ae9be45e
commit
8d93704ae9
@ -1,9 +1,25 @@
|
|||||||
package org.dromara.wms.mapper;
|
package org.dromara.wms.mapper;
|
||||||
|
|
||||||
import org.apache.ibatis.annotations.Param;
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
import org.dromara.wms.domain.WmsPsmInLoad;
|
||||||
|
import org.dromara.wms.domain.WmsPsmInLoadDetail;
|
||||||
|
import org.dromara.wms.domain.WmsPsmInStock;
|
||||||
|
import org.dromara.wms.domain.vo.WmsPsmInLoadVo;
|
||||||
import org.springframework.stereotype.Repository;
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
@Repository
|
@Repository
|
||||||
public interface WmsPdaApiMapper {
|
public interface WmsPdaApiMapper {
|
||||||
void rawReturnSubmitUpdateStateById(@Param("warehouseId") Long warehouseId);
|
void rawReturnSubmitUpdateStateById(@Param("warehouseId") Long warehouseId);
|
||||||
|
|
||||||
|
int bindVehicleSubmitInsertInLoad(@Param("wmsPsmInLoad") WmsPsmInLoad wmsPsmInLoad);
|
||||||
|
|
||||||
|
void bindVehicleSubmitInsertInLoadDetail(@Param("id") Long inLoadId, @Param("list") List<String> productList);
|
||||||
|
|
||||||
|
WmsPsmInLoadVo productSelectVehicleInfo(String code);
|
||||||
|
|
||||||
|
void insertInStockDetail(@Param("id") Long inStockId, @Param("list") List<WmsPsmInLoadDetail> list);
|
||||||
|
|
||||||
|
void insertPsmStorage(@Param("list") List<WmsPsmInLoadDetail> list,@Param("data") WmsPsmInStock vo);
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,23 @@
|
|||||||
package org.dromara.wms.service;
|
package org.dromara.wms.service;
|
||||||
|
|
||||||
|
import org.dromara.wms.domain.vo.WmsHppInStockDetailVo;
|
||||||
import org.dromara.wms.domain.vo.WmsOutstockRecordVo;
|
import org.dromara.wms.domain.vo.WmsOutstockRecordVo;
|
||||||
import org.dromara.wms.domain.vo.WmsPsmInLoadVo;
|
import org.dromara.wms.domain.vo.WmsPsmInLoadVo;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
public interface IWmsPdaApiService {
|
public interface IWmsPdaApiService {
|
||||||
WmsOutstockRecordVo returnSelectCode(String code);
|
WmsOutstockRecordVo returnSelectCode(String code);
|
||||||
|
|
||||||
void rawReturnSubmitUpdateStateById(Long warehouseId);
|
void rawReturnSubmitUpdateStateById(Long warehouseId);
|
||||||
|
|
||||||
WmsPsmInLoadVo productSelectVehicleInfo(String code);
|
WmsPsmInLoadVo productSelectVehicleInfo(String code);
|
||||||
|
|
||||||
|
Boolean bindVehicleSubmit(String vehicleCode, List<String> productList);
|
||||||
|
|
||||||
|
Boolean productSubmitInStoreInfo(WmsPsmInLoadVo vo);
|
||||||
|
|
||||||
|
WmsHppInStockDetailVo semiSelectVehicleInfo(String code);
|
||||||
|
|
||||||
|
Boolean updataInStoreRecord(WmsHppInStockDetailVo vo);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue