|
|
@@ -102,7 +102,7 @@ namespace MySystem.Areas.Admin.Controllers
|
|
|
//SN机具类型
|
|
|
int SnType = int.Parse(dic["SnType"].ToString());
|
|
|
if (SnType == 0) dic["SnType"] = "兑换机具";
|
|
|
- if (SnType == 1) dic["SnType"] = "赠送机具";
|
|
|
+ if (SnType == 1) dic["SnType"] = "循环机具";
|
|
|
//SN仓库
|
|
|
int SnStoreId = int.Parse(function.CheckInt(dic["SnStoreId"].ToString()));
|
|
|
StoreHouse snstoreid_StoreHouse = db.StoreHouse.FirstOrDefault(m => m.Id == SnStoreId) ?? new StoreHouse();
|
|
|
@@ -119,7 +119,7 @@ namespace MySystem.Areas.Admin.Controllers
|
|
|
//源SN机具类型
|
|
|
int SourceSnType = int.Parse(dic["SourceSnType"].ToString());
|
|
|
if (SourceSnType == 0) dic["SourceSnType"] = "兑换机具";
|
|
|
- if (SourceSnType == 1) dic["SourceSnType"] = "赠送机具";
|
|
|
+ if (SourceSnType == 1) dic["SourceSnType"] = "循环机具";
|
|
|
//源SN发货你仓库
|
|
|
dic["SourceStoreId"] = RelationClass.GetStoreHouseInfo(int.Parse(dic["SourceStoreId"].ToString()));
|
|
|
|
|
|
@@ -379,7 +379,7 @@ namespace MySystem.Areas.Admin.Controllers
|
|
|
//SN机具类型
|
|
|
int SnType = int.Parse(dic["SnType"].ToString());
|
|
|
if (SnType == 0) dic["SnType"] = "兑换机具";
|
|
|
- if (SnType == 1) dic["SnType"] = "赠送机具";
|
|
|
+ if (SnType == 1) dic["SnType"] = "循环机具";
|
|
|
//SN仓库
|
|
|
int SnStoreId = int.Parse(function.CheckInt(dic["SnStoreId"].ToString()));
|
|
|
StoreHouse snstoreid_StoreHouse = db.StoreHouse.FirstOrDefault(m => m.Id == SnStoreId) ?? new StoreHouse();
|
|
|
@@ -396,7 +396,7 @@ namespace MySystem.Areas.Admin.Controllers
|
|
|
//源SN机具类型
|
|
|
int SourceSnType = int.Parse(dic["SourceSnType"].ToString());
|
|
|
if (SourceSnType == 0) dic["SourceSnType"] = "兑换机具";
|
|
|
- if (SourceSnType == 1) dic["SourceSnType"] = "赠送机具";
|
|
|
+ if (SourceSnType == 1) dic["SourceSnType"] = "循环机具";
|
|
|
//源SN发货你仓库
|
|
|
dic["SourceStoreId"] = RelationClass.GetStoreHouseInfo(int.Parse(dic["SourceStoreId"].ToString()));
|
|
|
|