using System;
using System.Collections.Generic;
using System.Text;
using WMS.Web.Core.Dto.Erp;
using WMS.Web.Core.Dto.Erp.Customer;
using WMS.Web.Core.Dto.Erp.Org;
using WMS.Web.Core.Dto.Erp.Supplier;
namespace WMS.Web.Domain.IService.Public
{
///
/// erp基础数据:扩展服务接口
///
public interface IErpBasicDataExtendService
{
///
/// 获取物料名称
///
///
///
string GetMaterialName(List erpMaterials, int materialId);
///
/// 获取物料编码
///
///
///
///
string GetMaterialNumber(List erpMaterials, int materialId);
///
/// 获取物料规格型号
///
///
///
///
string GetMaterialSpecifications(List erpMaterials, int materialId);
///
/// 获取物料基本单位名称
///
///
///
///
string GetMaterialUnitName(List erpMaterials, int materialId);
///
/// 获取物料基本单位id
///
///
///
///
int GetMaterialUnitId(List erpMaterials, int materialId);
///
/// 获取物料基本单位编码
///
///
///
///
string GetMaterialUnitNumber(List erpMaterials, int materialId);
///
/// 获取组织名称
///
///
///
///
string GetOrgName(List erpOrgs, int orgId);
///
/// 获取组织名称
///
///
///
///
string GetOrgName(List erpOrgs, string orgCode);
///
/// 获取组织ID
///
///
///
int GetOrgId(List erpOrgs, string orgCode);
///
/// 获取供应商名称
///
///
///
///
string GetSupplierName(List erpSuppliers, int supplierId);
///
/// 获取客户名称
///
///
///
///
string GetCustomerName(List erpCustomers, int customerId);
///
/// 获取仓库名称
///
///
///
///
string GetStockName(List erpStocks, int stockId);
///
/// 获取仓库名称
///
///
///
///
string GetStockName(List erpStocks, string code);
///
/// 获取仓库编码
///
///
///
///
string GetStockCode(List erpStocks, int stockId);
///
/// 获取子仓库名称
///
///
///
///
string GetSubStockName(List erpStocks, string code);
}
}