lcl 1 ماه پیش
والد
کامیت
bdb2e9d20c
1فایلهای تغییر یافته به همراه6 افزوده شده و 6 حذف شده
  1. 6 6
      Controllers/HomeController.cs

+ 6 - 6
Controllers/HomeController.cs

@@ -227,15 +227,15 @@ namespace MySystem.Controllers
             return "ok";
             return "ok";
         }
         }
 
 
-        public string addmer(int id = 0)
+        public string addmer(string no = "")
         {
         {
-            List<int> ids = new List<int>();
-            ids.Add(7551);
+            List<string> ids = new List<string>();
+            ids.Add(no);
             WebCMSEntities db = new WebCMSEntities();
             WebCMSEntities db = new WebCMSEntities();
-            foreach(int sid in ids)
+            foreach(string sid in ids)
             {
             {
-                MerchantAddInfo add = db.MerchantAddInfo.FirstOrDefault(m => m.Id == sid) ?? new MerchantAddInfo();
-                MerchantInfo mer = db.MerchantInfo.FirstOrDefault(m => m.Id == sid) ?? new MerchantInfo();
+                MerchantAddInfo add = db.MerchantAddInfo.FirstOrDefault(m => m.MchtNo == sid) ?? new MerchantAddInfo();
+                MerchantInfo mer = db.MerchantInfo.FirstOrDefault(m => m.Id == add.Id) ?? new MerchantInfo();
                 PosPushDataNewHelper.Bind(add, mer);
                 PosPushDataNewHelper.Bind(add, mer);
             }
             }
             db.Dispose();
             db.Dispose();