Bläddra i källkod

去掉开店宝status字段的判断
更换机具队列记录机具轨迹

lichunlei 3 år sedan
förälder
incheckning
daa47aa219
28 ändrade filer med 458 tillägg och 10 borttagningar
  1. 1 1
      AppStart/Helper/SycnSpServer/SycnSpActiveService.cs
  2. 60 1
      AppStart/Timer/ChangePosTimer.cs
  3. 22 3
      Controllers/HomeController.cs
  4. 6 3
      Startup.cs
  5. 34 0
      Views/Home/PosTable.cshtml
  6. BIN
      bin/Debug/netcoreapp3.0/MySystem.Views.dll
  7. BIN
      bin/Debug/netcoreapp3.0/MySystem.Views.pdb
  8. BIN
      bin/Debug/netcoreapp3.0/MySystem.dll
  9. BIN
      bin/Debug/netcoreapp3.0/MySystem.pdb
  10. BIN
      bin/release/netcoreapp3.0/MySystem.Views.dll
  11. BIN
      bin/release/netcoreapp3.0/MySystem.Views.pdb
  12. BIN
      bin/release/netcoreapp3.0/MySystem.dll
  13. BIN
      bin/release/netcoreapp3.0/MySystem.pdb
  14. 1 1
      obj/Debug/netcoreapp3.0/MySystem.RazorCoreGenerate.cache
  15. BIN
      obj/Debug/netcoreapp3.0/MySystem.Views.dll
  16. BIN
      obj/Debug/netcoreapp3.0/MySystem.Views.pdb
  17. 1 0
      obj/Debug/netcoreapp3.0/MySystem.csproj.FileListAbsolute.txt
  18. BIN
      obj/Debug/netcoreapp3.0/MySystem.dll
  19. BIN
      obj/Debug/netcoreapp3.0/MySystem.pdb
  20. 163 0
      obj/Debug/netcoreapp3.0/Razor/Views/Home/PosTable.cshtml.g.cs
  21. 5 0
      obj/Debug/netcoreapp3.0/project.razor.json
  22. 1 1
      obj/release/netcoreapp3.0/MySystem.RazorCoreGenerate.cache
  23. BIN
      obj/release/netcoreapp3.0/MySystem.Views.dll
  24. BIN
      obj/release/netcoreapp3.0/MySystem.Views.pdb
  25. 1 0
      obj/release/netcoreapp3.0/MySystem.csproj.FileListAbsolute.txt
  26. BIN
      obj/release/netcoreapp3.0/MySystem.dll
  27. BIN
      obj/release/netcoreapp3.0/MySystem.pdb
  28. 163 0
      obj/release/netcoreapp3.0/Razor/Views/Home/PosTable.cshtml.g.cs

+ 1 - 1
AppStart/Helper/SycnSpServer/SycnSpActiveService.cs

@@ -37,7 +37,7 @@ namespace MySystem
                 { 
                     op = true;
                 }
-                else if (act.ActivateStatus == "SUCCESS" && act.ProductType == "2")
+                else if (act.ProductType == "2")
                 { 
                     op = true;
                 }

+ 60 - 1
AppStart/Timer/ChangePosTimer.cs

@@ -34,6 +34,7 @@ public class ChangePosTimer
                 string OldSnNum = jsonObj["OldSn"].ToString();
                 string NewSnNum = jsonObj["NewSn"].ToString();
                 string MerNo = jsonObj["MerNo"].ToString();
+                int ChangeId = int.Parse(jsonObj["ChangeId"].ToString());
                 WebCMSEntities db = new WebCMSEntities();
                 MachineForSnNo oldForSnNo = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == OldSnNum) ?? new MachineForSnNo();
                 MachineForSnNo newForSnNo = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == NewSnNum) ?? new MachineForSnNo();
@@ -88,10 +89,68 @@ public class ChangePosTimer
                     forMerNo.SnId = newpos.Id;
                 }
                 merchant.KqSnNo = NewSnNum;
+                // 金控电签售后换新仓  ID:762   仓库编号:S0000762
+                // 开店宝电签售后换新仓  ID:763   仓库编号:S0000763
+                // 金控大POS售后换新仓  ID:764   仓库编号:S0000764
+                // 就机具归回售后仓库
+                if (oldpos.BrandId == 1)
+                {
+                    oldpos.StoreId = 762;
+                }
+                else if (oldpos.BrandId == 2)
+                {
+                    oldpos.StoreId = 763;
+                }
+                else if (oldpos.BrandId == 3)
+                {
+                    oldpos.StoreId = 764;
+                }
+                MachineChange change = db.MachineChange.FirstOrDefault(m => m.Id == ChangeId) ?? new MachineChange();
+                StoreHouse store = db.StoreHouse.FirstOrDefault(m => m.Id == oldpos.StoreId) ?? new StoreHouse();
+                StoreStockChange query = db.StoreStockChange.Add(new StoreStockChange()
+                {
+                    CreateDate = DateTime.Now,
+                    StoreId = oldpos.StoreId, //仓库
+                    BrandId = oldpos.BrandId, //产品类型
+                    ProductName = RelationClass.GetKqProductBrandInfo(oldpos.BrandId), //产品名称
+                    ChangeNo = change.ChangeNo, //变更单号
+                    TransType = 11, //交易类型
+                    SnNo = oldpos.PosSn, //SN编号
+                    SnType = oldpos.PosSnType, //SN机具类型
+                    StockOpDirect = 1, //库存操作方向
+                    DeviceType = oldpos.DeviceType, //设备类型
+                    FromUserId = store.UserId, //出货人
+                    FromDate = DateTime.Now, //出库时间
+                    ToUserId = change.UserId, //收货人
+                    ToStoreId = oldpos.StoreId, //退货收货仓库
+                }).Entity;
+                StoreChangeHistory history = db.StoreChangeHistory.Add(new StoreChangeHistory()
+                {
+                    CreateDate = DateTime.Now,
+                    UserId = store.UserId, //创客
+                    BrandId = oldpos.BrandId, //产品类型
+                    ChangeRecordNo = change.ChangeNo, //变更记录单号
+                    TransType = 2, //交易类型
+                    SnNo = oldpos.PosSn, //SN编号
+                    SnType = oldpos.PosSnType, //SN机具类型
+                    StockOpDirect = 1, //库存操作方向
+                    DeviceVendor = oldpos.DeviceName, //设备厂商
+                    DeviceModel = oldpos.DeviceKind, //设备型号
+                    DeviceType = oldpos.DeviceType, //设备类型
+                    FromUserId = store.UserId, //出货创客
+                    FromDate = DateTime.Now, //出库时间
+                    SourceStoreId = oldpos.SourceStoreId, //源仓库
+                    StoreId = oldpos.StoreId, //仓库
+                }).Entity;
+                if (store != null)
+                {
+                    store.LaveNum += 1;
+                }
+                db.SaveChanges();
+                RedisDbconn.Instance.Clear("StoreHouse:" + store.Id);
                 RedisDbconn.Instance.Clear("PosMachinesTwo:" + oldpos.Id);
                 RedisDbconn.Instance.Clear("PosMachinesTwo:" + newpos.Id);
                 RedisDbconn.Instance.Clear("PosMerchantInfo:" + merchant.Id);
-                db.SaveChanges();
                 db.Dispose();
             }
             else

+ 22 - 3
Controllers/HomeController.cs

@@ -504,6 +504,7 @@ namespace MySystem.Controllers
                 PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId) ?? new PosMerchantInfo();
                 Users user = db.Users.FirstOrDefault(m => m.Id == pos.UserId) ?? new Users();
                 Users puser = db.Users.FirstOrDefault(m => m.Id == user.ParentUserId) ?? new Users();
+                Users ppuser = db.Users.FirstOrDefault(m => m.Id == puser.ParentUserId) ?? new Users();
                 Dictionary<string, string> item = new Dictionary<string, string>();
                 string TopRealName = "";
                 string TopMakerCode = "";
@@ -523,12 +524,11 @@ namespace MySystem.Controllers
                 }
                 item.Add("TopRealName", TopRealName); //顶级姓名
                 item.Add("TopMakerCode", TopMakerCode); //顶级编号
-                item.Add("TopMobile", TopMobile); //顶级手机号
+                item.Add("UpUpRealName", ppuser.RealName); //上上级姓名
                 item.Add("UpRealName", puser.RealName); //上级姓名
-                item.Add("UpMakerCode", puser.MakerCode); //上级编号
-                item.Add("UpMobile", puser.Mobile); //上级手机号
                 item.Add("RealName", user.RealName); //代理姓名
                 item.Add("MakerCode", user.MakerCode); //代理编号
+                item.Add("Mobile", user.Mobile); //代理手机号
                 item.Add("MerchantName", merchant.MerchantName); //客户姓名
                 item.Add("MerchantMobile", merchant.MerchantMobile); //客户电话
                 item.Add("OpenTime", pos.BindingTime == null ? "" : pos.BindingTime.Value.ToString("yyyy-MM-dd HH:mm:ss")); //开机日期
@@ -638,6 +638,25 @@ namespace MySystem.Controllers
             db.Dispose();
             return "ok";
         }
+        public string resetstorestock2(int id)
+        {
+            WebCMSEntities db = new WebCMSEntities();
+            DataTable dt = dbconn.dtable("select Id,LaveNum,(select count(Id) from PosMachinesTwo where StoreId=s.Id and UserId=0) as CurLaveNum from StoreHouse s where Id=" + id);
+            foreach (DataRow dr in dt.Rows)
+            {
+                int Id = int.Parse(function.CheckInt(dr["Id"].ToString()));
+                int CurLaveNum = int.Parse(function.CheckInt(dr["CurLaveNum"].ToString()));
+                StoreHouse store = db.StoreHouse.FirstOrDefault(m => m.Id == Id);
+                if (store != null)
+                {
+                    store.LaveNum = CurLaveNum;
+                    db.SaveChanges();
+                    RedisDbconn.Instance.Set("StoreHouse:" + Id, store);
+                }
+            }
+            db.Dispose();
+            return "ok";
+        }
 
         public string chkpwd(string pwd)
         {

+ 6 - 3
Startup.cs

@@ -216,13 +216,16 @@ namespace MySystem
 
             // app.UseMiddleware<GraphQLMiddleware>();
 
-            // ActiveRewardTimer.Instance.Start(); //实时处理激活记录
-            // TradeStatTimer.Instance.Start(); //交易统计
+            
             // TradeStatTimer2.Instance.Start(); //交易统计
             // ProfitHelper.Instance.StatProfit("202203");
 
-            //当前必须打开的
+            //必须打开的
+            // ActiveRewardTimer.Instance.Start(); //实时处理激活记录
+            // TradeStatTimer.Instance.Start(); //交易统计
+            // ChangePosTimer.Instance.Start(); //售后换新执行机具数据转移
             // RabbitMQClient.Instance.StartReceive("MakeReferenceQrCode");
+            //必须打开的
 
             // RabbitMQClient.Instance.StartReceive("MerchantConfirmList");
             // RabbitMQClient.Instance.StartReceive("CheckWeChatSign");

+ 34 - 0
Views/Home/PosTable.cshtml

@@ -0,0 +1,34 @@
+@{
+    List<Dictionary<string, string>> list = ViewBag.list as List<Dictionary<string, string>>;
+}
+<table>
+    <tr>
+        <td>顶级姓名</td>
+        <td>顶级编号</td>
+        <td>上上级姓名</td>
+        <td>上级姓名</td>
+        <td>代理姓名</td>
+        <td>代理编号</td>
+        <td>代理手机号</td>
+        <td>客户姓名</td>
+        <td>客户电话</td>
+        <td>开机日期</td>
+        <td>SN</td>
+    </tr>
+    @foreach(Dictionary<string, string> row in list)
+    {
+    <tr>
+        <td>@row["TopRealName"]</td>
+        <td>@row["TopMakerCode"]</td>
+        <td>@row["UpUpRealName"]</td>
+        <td>@row["UpRealName"]</td>
+        <td>@row["RealName"]</td>
+        <td>@row["MakerCode"]</td>
+        <td>@row["Mobile"]</td>
+        <td>@row["MerchantName"]</td>
+        <td>@row["MerchantMobile"]</td>
+        <td>@row["OpenTime"]</td>
+        <td>`@row["Sn"]</td>
+    </tr>
+    }
+</table>

BIN
bin/Debug/netcoreapp3.0/MySystem.Views.dll


BIN
bin/Debug/netcoreapp3.0/MySystem.Views.pdb


BIN
bin/Debug/netcoreapp3.0/MySystem.dll


BIN
bin/Debug/netcoreapp3.0/MySystem.pdb


BIN
bin/release/netcoreapp3.0/MySystem.Views.dll


BIN
bin/release/netcoreapp3.0/MySystem.Views.pdb


BIN
bin/release/netcoreapp3.0/MySystem.dll


BIN
bin/release/netcoreapp3.0/MySystem.pdb


+ 1 - 1
obj/Debug/netcoreapp3.0/MySystem.RazorCoreGenerate.cache

@@ -1 +1 @@
-09a6ecfff8ee659284ede966d2a48dd180d4a431
+a27c56ef0cf5c93d300eeafb0f65b560403c0595

BIN
obj/Debug/netcoreapp3.0/MySystem.Views.dll


BIN
obj/Debug/netcoreapp3.0/MySystem.Views.pdb


+ 1 - 0
obj/Debug/netcoreapp3.0/MySystem.csproj.FileListAbsolute.txt

@@ -205,3 +205,4 @@
 /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/obj/Debug/netcoreapp3.0/MySystem.csproj.CopyComplete
 /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/obj/Debug/netcoreapp3.0/MySystem.dll
 /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/obj/Debug/netcoreapp3.0/MySystem.pdb
+/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/obj/Debug/netcoreapp3.0/Razor/Views/Home/PosTable.cshtml.g.cs

BIN
obj/Debug/netcoreapp3.0/MySystem.dll


BIN
obj/Debug/netcoreapp3.0/MySystem.pdb


+ 163 - 0
obj/Debug/netcoreapp3.0/Razor/Views/Home/PosTable.cshtml.g.cs

@@ -0,0 +1,163 @@
+#pragma checksum "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "f0797debe477a196da91fc6dde0e8ad34a06f7ee"
+// <auto-generated/>
+#pragma warning disable 1591
+[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Home_PosTable), @"mvc.1.0.view", @"/Views/Home/PosTable.cshtml")]
+namespace AspNetCore
+{
+    #line hidden
+    using System;
+    using System.Collections.Generic;
+    using System.Linq;
+    using System.Threading.Tasks;
+    using Microsoft.AspNetCore.Mvc;
+    using Microsoft.AspNetCore.Mvc.Rendering;
+    using Microsoft.AspNetCore.Mvc.ViewFeatures;
+    [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"f0797debe477a196da91fc6dde0e8ad34a06f7ee", @"/Views/Home/PosTable.cshtml")]
+    public class Views_Home_PosTable : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<dynamic>
+    {
+        #pragma warning disable 1998
+        public async override global::System.Threading.Tasks.Task ExecuteAsync()
+        {
+#nullable restore
+#line 1 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+  
+    List<Dictionary<string, string>> list = ViewBag.list as List<Dictionary<string, string>>;
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral(@"<table>
+    <tr>
+        <td>顶级姓名</td>
+        <td>顶级编号</td>
+        <td>上上级姓名</td>
+        <td>上级姓名</td>
+        <td>代理姓名</td>
+        <td>代理编号</td>
+        <td>代理手机号</td>
+        <td>客户姓名</td>
+        <td>客户电话</td>
+        <td>开机日期</td>
+        <td>SN</td>
+    </tr>
+");
+#nullable restore
+#line 18 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+     foreach(Dictionary<string, string> row in list)
+    {
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral("    <tr>\n        <td>");
+#nullable restore
+#line 21 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+       Write(row["TopRealName"]);
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral("</td>\n        <td>");
+#nullable restore
+#line 22 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+       Write(row["TopMakerCode"]);
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral("</td>\n        <td>");
+#nullable restore
+#line 23 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+       Write(row["UpUpRealName"]);
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral("</td>\n        <td>");
+#nullable restore
+#line 24 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+       Write(row["UpRealName"]);
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral("</td>\n        <td>");
+#nullable restore
+#line 25 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+       Write(row["RealName"]);
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral("</td>\n        <td>");
+#nullable restore
+#line 26 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+       Write(row["MakerCode"]);
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral("</td>\n        <td>");
+#nullable restore
+#line 27 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+       Write(row["Mobile"]);
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral("</td>\n        <td>");
+#nullable restore
+#line 28 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+       Write(row["MerchantName"]);
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral("</td>\n        <td>");
+#nullable restore
+#line 29 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+       Write(row["MerchantMobile"]);
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral("</td>\n        <td>");
+#nullable restore
+#line 30 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+       Write(row["OpenTime"]);
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral("</td>\n        <td>`");
+#nullable restore
+#line 31 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+        Write(row["Sn"]);
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral("</td>\n    </tr>\n");
+#nullable restore
+#line 33 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+    }
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral("</table>");
+        }
+        #pragma warning restore 1998
+        [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
+        public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; }
+        [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
+        public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; }
+        [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
+        public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; }
+        [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
+        public global::Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper Json { get; private set; }
+        [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
+        public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper<dynamic> Html { get; private set; }
+    }
+}
+#pragma warning restore 1591

+ 5 - 0
obj/Debug/netcoreapp3.0/project.razor.json

@@ -10184,6 +10184,11 @@
   },
   "RootNamespace": "MySystem",
   "Documents": [
+    {
+      "FilePath": "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml",
+      "TargetPath": "Views\\Home\\PosTable.cshtml",
+      "FileKind": "mvc"
+    },
     {
       "FilePath": "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/Index.cshtml",
       "TargetPath": "Views\\Home\\Index.cshtml",

+ 1 - 1
obj/release/netcoreapp3.0/MySystem.RazorCoreGenerate.cache

@@ -1 +1 @@
-09a6ecfff8ee659284ede966d2a48dd180d4a431
+a27c56ef0cf5c93d300eeafb0f65b560403c0595

BIN
obj/release/netcoreapp3.0/MySystem.Views.dll


BIN
obj/release/netcoreapp3.0/MySystem.Views.pdb


+ 1 - 0
obj/release/netcoreapp3.0/MySystem.csproj.FileListAbsolute.txt

@@ -205,3 +205,4 @@
 /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/obj/release/netcoreapp3.0/MySystem.csproj.CopyComplete
 /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/obj/release/netcoreapp3.0/MySystem.dll
 /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/obj/release/netcoreapp3.0/MySystem.pdb
+/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/obj/release/netcoreapp3.0/Razor/Views/Home/PosTable.cshtml.g.cs

BIN
obj/release/netcoreapp3.0/MySystem.dll


BIN
obj/release/netcoreapp3.0/MySystem.pdb


+ 163 - 0
obj/release/netcoreapp3.0/Razor/Views/Home/PosTable.cshtml.g.cs

@@ -0,0 +1,163 @@
+#pragma checksum "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "f0797debe477a196da91fc6dde0e8ad34a06f7ee"
+// <auto-generated/>
+#pragma warning disable 1591
+[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Home_PosTable), @"mvc.1.0.view", @"/Views/Home/PosTable.cshtml")]
+namespace AspNetCore
+{
+    #line hidden
+    using System;
+    using System.Collections.Generic;
+    using System.Linq;
+    using System.Threading.Tasks;
+    using Microsoft.AspNetCore.Mvc;
+    using Microsoft.AspNetCore.Mvc.Rendering;
+    using Microsoft.AspNetCore.Mvc.ViewFeatures;
+    [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"f0797debe477a196da91fc6dde0e8ad34a06f7ee", @"/Views/Home/PosTable.cshtml")]
+    public class Views_Home_PosTable : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<dynamic>
+    {
+        #pragma warning disable 1998
+        public async override global::System.Threading.Tasks.Task ExecuteAsync()
+        {
+#nullable restore
+#line 1 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+  
+    List<Dictionary<string, string>> list = ViewBag.list as List<Dictionary<string, string>>;
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral(@"<table>
+    <tr>
+        <td>顶级姓名</td>
+        <td>顶级编号</td>
+        <td>上上级姓名</td>
+        <td>上级姓名</td>
+        <td>代理姓名</td>
+        <td>代理编号</td>
+        <td>代理手机号</td>
+        <td>客户姓名</td>
+        <td>客户电话</td>
+        <td>开机日期</td>
+        <td>SN</td>
+    </tr>
+");
+#nullable restore
+#line 18 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+     foreach(Dictionary<string, string> row in list)
+    {
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral("    <tr>\n        <td>");
+#nullable restore
+#line 21 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+       Write(row["TopRealName"]);
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral("</td>\n        <td>");
+#nullable restore
+#line 22 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+       Write(row["TopMakerCode"]);
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral("</td>\n        <td>");
+#nullable restore
+#line 23 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+       Write(row["UpUpRealName"]);
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral("</td>\n        <td>");
+#nullable restore
+#line 24 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+       Write(row["UpRealName"]);
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral("</td>\n        <td>");
+#nullable restore
+#line 25 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+       Write(row["RealName"]);
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral("</td>\n        <td>");
+#nullable restore
+#line 26 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+       Write(row["MakerCode"]);
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral("</td>\n        <td>");
+#nullable restore
+#line 27 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+       Write(row["Mobile"]);
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral("</td>\n        <td>");
+#nullable restore
+#line 28 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+       Write(row["MerchantName"]);
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral("</td>\n        <td>");
+#nullable restore
+#line 29 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+       Write(row["MerchantMobile"]);
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral("</td>\n        <td>");
+#nullable restore
+#line 30 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+       Write(row["OpenTime"]);
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral("</td>\n        <td>`");
+#nullable restore
+#line 31 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+        Write(row["Sn"]);
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral("</td>\n    </tr>\n");
+#nullable restore
+#line 33 "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Views/Home/PosTable.cshtml"
+    }
+
+#line default
+#line hidden
+#nullable disable
+            WriteLiteral("</table>");
+        }
+        #pragma warning restore 1998
+        [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
+        public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; }
+        [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
+        public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; }
+        [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
+        public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; }
+        [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
+        public global::Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper Json { get; private set; }
+        [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
+        public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper<dynamic> Html { get; private set; }
+    }
+}
+#pragma warning restore 1591