You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.1 KiB
38 lines
1.1 KiB
1 year ago
|
using System.Collections.Generic;
|
||
|
using System.ServiceModel;
|
||
|
|
||
|
namespace SSWMS.Common
|
||
|
{
|
||
|
[ServiceContract]
|
||
|
public partial interface I_StorageService
|
||
|
{
|
||
|
[OperationContract]
|
||
|
GOODS_MAIN GetGoodsMain(int iGoodsID);
|
||
|
|
||
|
[OperationContract]
|
||
|
GOODS_MAIN GetGoodsMainByGoodsCode(string sGoodsCode);
|
||
|
|
||
|
[OperationContract]
|
||
|
string GetStockBarcode(string sCellCode);
|
||
|
|
||
|
[OperationContract]
|
||
|
IList<STORAGE_LIST> GetStorageList(string sStockBarcode);
|
||
|
|
||
|
[OperationContract]
|
||
|
bool DeleteStorage(int iStorageID, int iStorageListID, string sOperator, out string sResult);
|
||
|
|
||
|
[OperationContract]
|
||
|
bool StorageUpdate(List<STORAGE_LIST> lStorageList, string sOperator, out string sResult);
|
||
|
|
||
|
[OperationContract]
|
||
|
bool EditStorage(STORAGE_MAIN smParameter, IList<STORAGE_LIST> lStorageList,
|
||
|
string sOperator, out string sResult);
|
||
|
|
||
|
[OperationContract]
|
||
|
List<STORAGE_LIST> GetStorageListERP(string sStockBarcode, out string sResult);
|
||
|
|
||
|
[OperationContract]
|
||
|
bool StorageUpdateERP(List<string> lGoodsBarcode, out string sResult);
|
||
|
}
|
||
|
}
|