DuGuYang 3 лет назад
Родитель
Сommit
997fa3f75c

+ 1 - 1
Areas/Admin/Controllers/MainServer/PosMerchantInfoListController.cs

@@ -263,11 +263,11 @@ namespace MySystem.Areas.Admin.Controllers
                 var pos = db.PosMachinesTwo.FirstOrDefault(m => m.PosSn == KqSnNo) ?? new PosMachinesTwo();
                 //实际押金
                 string SeoKeyword = pos.SeoKeyword.ToString();
-                ReturnAmounts += decimal.Parse(function.CheckNum(SeoKeyword));
                 if (SeoKeyword.Length > 3)
                 {
                     SeoKeyword = (decimal.Parse(SeoKeyword) / 100).ToString();
                 }
+                ReturnAmounts += decimal.Parse(SeoKeyword);
                 dic["SeoKeyword"] = SeoKeyword;
 
                 //设置押金

+ 1 - 1
Areas/Admin/Views/MainServer/PosMerchantInfoList/Indexrg.cshtml

@@ -86,7 +86,7 @@
                         }
                     </div>
                     <blockquote class="layui-elem-quote layui-text">
-                        退押总金额:<span style="color: #f00;" id="ReturnAmounts">0.00</span> | 实际总金额:<span style="color: #f00;" id="ReturnAmount">0.00</span>
+                        退押总金额:<span style="color: #f00;" id="ReturnAmount">0.00</span> | 实际总金额:<span style="color: #f00;" id="ReturnAmounts">0.00</span>
                     </blockquote>
                 </div>
             </div>

+ 2 - 2
Startup.cs

@@ -142,8 +142,8 @@ namespace MySystem
             OpExcelHelper.Instance.Start();
             TestHelper.Instance.Start();
             
-            TimeOutPosSendMessageService.Instance.Start();//过期机具循环截止时间超过55天预扣费消息推送
-            TimeOutPosChargeService.Instance.Start();//过期机具循环截止时间超过60天执行扣费
+            // TimeOutPosSendMessageService.Instance.Start();//过期机具循环截止时间超过55天预扣费消息推送
+            // TimeOutPosChargeService.Instance.Start();//过期机具循环截止时间超过60天执行扣费
             // TimeOutPosChargeReturnService.Instance.Start();//过期购买机具循环截止时间超过15天激活扣费退还
         }