@@ -510,9 +510,14 @@ namespace MySystem.Areas.Admin.Controllers
string[] Ids = IdList.TrimEnd('#').Split('#');
string[] StoreIds = StoreIdList.TrimEnd('#').Split('#');
string[] SnNoss = SnNosList.TrimEnd('#').Split('#');
+ int[] pIds = new int[] { 42, 41, 21, 20, 19, 18, 17, 16, 14, 13, 12, 9, 8, 7};
for (int i = 0; i < Ids.Length; i++)
{
int Id = int.Parse(Ids[i]);
+ if (pIds.Contains(Id))
+ {
+ Fields.Add("Status", 3);
+ }
int StoreId = int.Parse(StoreIds[i]);
string SnNos = SnNoss[i];
OrderProduct pro = db.OrderProduct.FirstOrDefault(m => m.Id == Id);