using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Infrastructure.Enumeration
{
///
/// 库存业务类型
///
public enum StockSheetType
{
///
/// 采购入库
///
[Description("采购入库")]
PurchaseInStock = 3030,
///
/// 退货入库
///
[Description("退货入库")]
ReturnsGoodsInStock = 3210,
///
/// 订单出库
///
[Description("订单出库")]
OrderOutStock = 3110,
///
/// 退货出库
///
[Description("退货出库")]
ReturnsGoodsOutStock = 3410,
///
/// 调拨出库
///
[Description("调拨出库")]
TransferOutStock = 3310,
///
/// 调拨入库
///
[Description("调拨入库")]
TransferInStock = 3311,
///
/// 报损
///
[Description("报损")]
ShopLost = 3510,
///
/// 领料
///
[Description("领料")]
ShopUse = 3610,
///
/// 盘点盈亏
///
[Description("盘点盈亏")]
InventoryIncome = 6110,
///
/// 库存调整
///
[Description("库存调整")]
StockAdjustment = 6210,
///
/// 换货入库
///
[Description("换货入库")]
ExchangeIn = 8012,
///
/// 销售
///
[Description("销售")]
Sales = 8010,
///
/// 使用服务
///
[Description("使用服务")]
UseService = 8020,
///
/// 调整
///
[Description("调整")]
Adjust = 200,
///
/// 不显示在流水的调整类型
///
[Description("不显示在流水的调整类型")]
NotShowAdjust = 300,
///
/// 大转盘抽奖
///
[Description("大转盘抽奖")]
LuckyDraw = 300,
}
}