using Library;
using MySystem.Service.Main;
using System;
using System.Collections.Generic;
namespace MySystem
{
///
/// 机具变动历史工具类
///
public class StoreChangeHistoryUtil
{
#region 添加机具变动历史(仓库出货)
///
/// 添加机具变动历史(仓库出货)
///
/// 创客
/// 产品类型
/// 变更记录单号
/// 交易类型
/// SN编号
/// SN机具类型
/// 库存操作方向
/// 设备厂商
/// 设备型号
/// 设备类型
/// 收货创客
/// 出货创客
/// 出库时间
/// 源仓库
/// 仓库
///
public static void AddForTransfer(int UserId, int BrandId, string ChangeRecordNo, int TransType, string SnNo, int SnType, int StockOpDirect, string DeviceVendor, string DeviceModel, string DeviceType, int ToUserId, int FromUserId, DateTime? FromDate, int SourceStoreId, int StoreId, int OpId)
{
Dictionary history = new Dictionary();
history.Add("UserId", UserId);//创客
history.Add("BrandId", BrandId);//产品类型
history.Add("ChangeRecordNo", ChangeRecordNo);//变更记录单号
history.Add("TransType", TransType);//交易类型
history.Add("SnNo", SnNo);//SN编号
history.Add("SnType", SnType);//SN机具类型
history.Add("StockOpDirect", StockOpDirect);//库存操作方向
history.Add("DeviceVendor", DeviceVendor);//设备厂商
history.Add("DeviceModel", DeviceModel);//设备型号
history.Add("DeviceType", DeviceType);//设备类型
history.Add("ToUserId", ToUserId);//收货创客
history.Add("FromUserId", FromUserId);//出货创客
history.Add("FromDate", DateTime.Now);//出库时间
history.Add("SourceStoreId", SourceStoreId);//源仓库
history.Add("StoreId", StoreId);//仓库
history.Add("OpId", OpId);//运营中心创客Id
StoreChangeHistoryService.Add(history);
}
#endregion
}
}