36 lines
887 B
C#
36 lines
887 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ZR.Model.MES.qc.DTO;
|
|
using ZR.Model.MES.wms;
|
|
using ZR.Model.MES.wms.Dto;
|
|
|
|
namespace ZR.Service.mes.wms.IService
|
|
{
|
|
public interface IWMentryWarehousing_productService
|
|
{
|
|
|
|
|
|
// 获取库位列表
|
|
public bool IsProductionLoacation(string production_location_code);
|
|
|
|
// 判断是否为成品箱子码
|
|
public int isProductionPackage(string production_packcode);
|
|
|
|
//判断箱子是否满
|
|
public bool isFullPackage(string production_packcode);
|
|
|
|
// 货物入库
|
|
public int IntoProductwarehouse(WmgoodsDto wmgoods, string createName);
|
|
|
|
//获取库位已经存在的货物
|
|
public List<WmGoodsNowProduction> Getpackagelist(string location);
|
|
|
|
|
|
|
|
}
|
|
}
|