using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Domain.Values.Erp
{
///
/// 业务对象表单Id:对应erp的单据表的名称
///
public enum FormIdParam
{
///
/// 采购订单
///
PUR_PurchaseOrder=1,
///
/// 采购入库单
///
STK_InStock=2,
///
/// 其他入库单
///
STK_MISCELLANEOUS=3,
///
/// 直接调拨单-里面包含出和入
///
STK_TransferDirect = 4,
///
/// 分步式调入单
///
STK_TRANSFERIN=5,
///
/// 组装拆卸单:里面包含出和入
///
STK_AssembledApp=6,
///
/// 组织
///
ORG_Organizations=7,
///
/// 供应商
///
BD_Supplier=8,
///
/// 仓库
///
BD_STOCK=9,
///
/// 盘盈单
///
STK_StockCountGain,
///
/// 盘亏单
///
STK_StockCountLoss,
}
}