|
@@ -32,7 +32,6 @@ public interface LogisticsInfoService extends BaseService<LogisticsInfo> {
|
|
|
* 采购入库列表
|
|
|
*
|
|
|
* @param condition 查询条件
|
|
|
- * @return
|
|
|
*/
|
|
|
Page<LogisticsInfo> getPurchaseInStockPage(Map<String, Object> condition);
|
|
|
|
|
@@ -40,7 +39,6 @@ public interface LogisticsInfoService extends BaseService<LogisticsInfo> {
|
|
|
* 根据采购ID查询
|
|
|
*
|
|
|
* @param purchaseIds 采购ID集合
|
|
|
- * @return
|
|
|
*/
|
|
|
List<LogisticsInfo> getByPurchaseIds(List<Long> purchaseIds);
|
|
|
|
|
@@ -48,7 +46,6 @@ public interface LogisticsInfoService extends BaseService<LogisticsInfo> {
|
|
|
* 根据采购ID查询
|
|
|
*
|
|
|
* @param purchaseIds 采购ID集合
|
|
|
- * @return
|
|
|
*/
|
|
|
Map<Long, List<LogisticsInfo>> getByPurchaseIdsToMap(List<Long> purchaseIds);
|
|
|
|
|
@@ -64,7 +61,6 @@ public interface LogisticsInfoService extends BaseService<LogisticsInfo> {
|
|
|
* 根据业务ID查询物流单号
|
|
|
*
|
|
|
* @param businessId 业务ID
|
|
|
- * @return
|
|
|
*/
|
|
|
List<LogisticsInfo> codeSelectByBusinessId(Long businessId);
|
|
|
|
|
@@ -78,6 +74,9 @@ public interface LogisticsInfoService extends BaseService<LogisticsInfo> {
|
|
|
*/
|
|
|
void arrivalNotice(LogisticsInfoVo entity);
|
|
|
|
|
|
+
|
|
|
+ * 入库
|
|
|
+ */
|
|
|
void inStock(InStockAdd inStockAdd);
|
|
|
|
|
|
}
|