|
@@ -51,8 +51,20 @@ namespace MySystem.Controllers
|
|
|
|
|
|
public string test()
|
|
|
{
|
|
|
- string result = PublicImportDataService.Instance.SetLiSWeDeposit("WME52S0151353", 0);
|
|
|
- return result;
|
|
|
+ WebCMSEntities db = new WebCMSEntities();
|
|
|
+ string content = function.ReadInstance("/txt/lkbsn.txt");
|
|
|
+ string[] list = content.Replace("\r", "").Split('\n');
|
|
|
+ foreach (string sub in list)
|
|
|
+ {
|
|
|
+ PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.PosSn == sub);
|
|
|
+ if (pos != null)
|
|
|
+ {
|
|
|
+ string info = "{\"RecordId\":\"\",\"PosId\":\"" + pos.Id + "\",\"Fee\": \"0.63\",\"Kind\": \"1\",\"OpMan\": \"" + "系统" + "\"}";
|
|
|
+ RedisDbconn.Instance.AddList("SetDepositPostQueue", info);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ db.Dispose();
|
|
|
+ return "ok";
|
|
|
}
|
|
|
|
|
|
|