diff --git a/Epost.BLL/OrderBLL.cs b/Epost.BLL/OrderBLL.cs
index 9623aaf..30255bb 100644
--- a/Epost.BLL/OrderBLL.cs
+++ b/Epost.BLL/OrderBLL.cs
@@ -792,8 +792,9 @@ namespace Epost.BLL
demodel.Addresstype = "1";
demodel.ControlID = "";
demodel.ControlIP = item["ControlIP"].ToString();
- //demodel.Layer = item["Layer"].ToString();
- //demodel.Slist = item["Slist"].ToString();
+ demodel.Layer = item["Layer"].ToString();
+ demodel.Slist = item["Slist"].ToString();
+ demodel.clientcode = item["clientcode"].ToString();
//demodel.Zone = item["zone"].ToString();
//demodel.TaskType =Convert.ToInt32(item["tasktype"].ToString());
diff --git a/Epost.BLL/OrderControlBLL.cs b/Epost.BLL/OrderControlBLL.cs
index bb9a7d9..6faa91d 100644
--- a/Epost.BLL/OrderControlBLL.cs
+++ b/Epost.BLL/OrderControlBLL.cs
@@ -1,4 +1,5 @@
using System;
+using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.Data.Entity.Infrastructure;
@@ -11,6 +12,7 @@ using Epost.DAL;
using Epost.DAL.Cache;
using Epost.DAL.Enum;
using Epost.Model;
+using static Epost.DAL.Enum.LightColor;
namespace Epost.BLL
{
@@ -585,7 +587,7 @@ namespace Epost.BLL
if (queueDT != null && queueDT.Rows.Count > 0)
{
- ShowMessageModel showmodel = new ShowMessageModel();
+
////获取当前区任务并加入缓存
//if (!isJobList.Any())
//{
@@ -594,7 +596,7 @@ namespace Epost.BLL
if (nowJoblist.Any())
{
var nowmodel = nowJoblist.FirstOrDefault();
-
+ string showmes = string.Empty;
#region 点亮任务标签
foreach (JobModel item in nowJoblist.ToArray())
{
@@ -633,10 +635,11 @@ namespace Epost.BLL
{
manufactname = item.manufactname.Substring(0, 4);
}
- lamodel.Content = "" + item.Sku.Substring(item.Sku.Length - 4, 4) + "\\t" + item.Spec + "\r" + item.GoodsName + "\r批号" + item.batchno + " " + manufactname + "";
+ // lamodel.Content = "" + item.Sku.Substring(item.Sku.Length - 4, 4) + "\\t" + item.Spec + "\r" + item.GoodsName + "\r批号" + item.batchno + " " + manufactname + "";
+ lamodel.Content = "" + item.GoodsName + "\r" + item.Spec + "\r" + manufactname + "";
var aryloc = item.Tolocation.Split('-');
- lamodel.Loc = "" + aryloc[0].ToString() + "-" + aryloc[1].ToString() + "";
- lamodel.W_quantity = aryloc[2].ToString();
+ lamodel.Loc = "" + aryloc[0].ToString();
+ lamodel.W_quantity = item.Slist;
lamodel.Quantity = quantity.ToString();
lamodel.Unit = item.Unit;
lamodel.PicChoose = "";
@@ -719,7 +722,7 @@ namespace Epost.BLL
item.DisplayTime = DateTime.Now;
#endregion
-
+ showmes = item.clientcode;
}
#endregion
@@ -729,6 +732,36 @@ namespace Epost.BLL
{
LogHelper.WriteLogInfo("添加到点亮的list————————————————————:" + list.Count);
comBLL.DISPLAY_JOBALL(list);
+ //点亮显示器
+ if (!string.IsNullOrEmpty(showmes))
+ {
+
+ LogHelper.WriteLogInfo("下发异常货位信息"+showmes);
+ if (showmes.Length > 30)
+ {
+ string newstr = showmes.Substring(30, showmes.Length - 30);
+ if (newstr.Length > 30)
+ {
+ showmes = showmes.Substring(0, 30) + "\r" + newstr.Substring(0, 30) + "\r" + newstr.Substring(30, newstr.Length - 30);
+ }
+ else
+ {
+ showmes = showmes.Substring(0, 30) + "\r" + newstr;
+ }
+
+ }
+ ShowMessageModel_M showmodel = new ShowMessageModel_M();
+ showmodel.Area = narea;
+ showmodel.Block = nblock;
+ showmodel.Color = EnumHelper.EMToDescriptionString(LightColor.Color.Red);
+ showmodel.Islock = true;
+ showmodel.Title = "下发货位异常信息";
+ showmodel.IsTwinkle = 0;
+ showmodel.Contents = showmes;
+ showmodel.Type = 2;
+ comBLL.ShowBoxMessage_M(showmodel);//点亮显示标签
+ }
+
}
}
//else
diff --git a/Epost.DAL/OrdersDAL.cs b/Epost.DAL/OrdersDAL.cs
index c375917..fb9562c 100644
--- a/Epost.DAL/OrdersDAL.cs
+++ b/Epost.DAL/OrdersDAL.cs
@@ -52,7 +52,7 @@ namespace Epost.DAL
string sql = string.Empty;
if (!string.IsNullOrEmpty(area))
{
- sql = string.Format("select id,transderDid,orderid,Sku,genericname,GoodsName,Spec,Unit,batchno,manufactname,Quantity,stockquantity,shopname,Tolocation,labelcolor,looklisten,labelIP,labelno,Matchid,barcode,BatchId,DownDate,Discount,address,ControlIP,area,block,shopid from v_orders where state = 0 and oprationstate =0 and block = '{1}' and area='{2}' " + strwhere + "",
+ sql = string.Format("select id,transderDid,orderid,Sku,genericname,GoodsName,Spec,Unit,batchno,manufactname,Quantity,stockquantity,shopname,Tolocation,labelcolor,looklisten,labelIP,labelno,Matchid,barcode,BatchId,DownDate,Discount,address,ControlIP,area,block,shopid,slist,layer,clientcode from v_orders where state = 0 and oprationstate =0 and block = '{1}' and area='{2}' " + strwhere + "",
sku,
block, area);
@@ -60,7 +60,7 @@ namespace Epost.DAL
}
else
{
- sql = string.Format("select id,transderDid,orderid,Sku,genericname,GoodsName,Spec,Unit,batchno,manufactname,Quantity,stockquantity,shopname,Tolocation,labelcolor,looklisten,labelIP,labelno,Matchid,barcode,BatchId,DownDate,Discount,address,ControlIP,area,block,shopid from v_orders where state = 0 and oprationstate =0 and sku = '{0}' and block = '{1}' " + strwhere + "",
+ sql = string.Format("select id,transderDid,orderid,Sku,genericname,GoodsName,Spec,Unit,batchno,manufactname,Quantity,stockquantity,shopname,Tolocation,labelcolor,looklisten,labelIP,labelno,Matchid,barcode,BatchId,DownDate,Discount,address,ControlIP,area,block,shopid,slist,layer,clientcode from v_orders where state = 0 and oprationstate =0 and sku = '{0}' and block = '{1}' " + strwhere + "",
sku,
block);
diff --git a/Epost.Model/JobModel.cs b/Epost.Model/JobModel.cs
index 0b1838e..4c734d6 100644
--- a/Epost.Model/JobModel.cs
+++ b/Epost.Model/JobModel.cs
@@ -48,6 +48,7 @@ namespace Epost.Model
private string _Unit = string.Empty;//小单位
private string _UserCode = string.Empty;//工号
private string _no = string.Empty;//任务序号
+ private string _clientcode = string.Empty;//货位不存在提示
public string BatchId
{
get
@@ -396,6 +397,7 @@ namespace Epost.Model
public string UserCode { get => _UserCode; set => _UserCode = value; }
public string No { get => _no; set => _no = value; }
public string ID { get => _ID; set => _ID = value; }
+ public string clientcode { get => _clientcode; set => _clientcode = value; }
}
}
diff --git a/Epost.TestToolsWeb.Tests/Controllers/UnitTest1.cs b/Epost.TestToolsWeb.Tests/Controllers/UnitTest1.cs
index a14d123..011f0de 100644
--- a/Epost.TestToolsWeb.Tests/Controllers/UnitTest1.cs
+++ b/Epost.TestToolsWeb.Tests/Controllers/UnitTest1.cs
@@ -19,13 +19,19 @@ namespace Epost.TestToolsWeb.Tests.Controllers
[TestMethod]
public void d()
{
- string sku = "211100";
- if (sku.Substring(0, 1) == "2" && sku.Substring(1, 1) != "5")
+ string showmes = "211100|394892345|938275908324|93875|934725";
+ if (showmes.Length > 30)
{
- if (sku.Length >= 7)
+ string newstr = showmes.Substring(30, showmes.Length-30);
+ if (newstr.Length > 30)
{
- sku = sku.Substring(1, 6);
+ showmes = showmes.Substring(0, 30) + "\r" + newstr.Substring(0, 30) + "\r" + newstr.Substring(30, newstr.Length-30);
}
+ else
+ {
+ showmes = showmes.Substring(0, 30) + "\r" + newstr;
+ }
+
}
}
}
diff --git a/Epost.TestToolsWeb/Epost.DPS.csproj.user b/Epost.TestToolsWeb/Epost.DPS.csproj.user
index 00fd366..b1a2138 100644
--- a/Epost.TestToolsWeb/Epost.DPS.csproj.user
+++ b/Epost.TestToolsWeb/Epost.DPS.csproj.user
@@ -10,7 +10,7 @@
~/Views/Shared/_EpostLayoutPage.cshtml
False
600
- D:\驿传\Epost\T_DAS_PTL\Epost.TestToolsWeb\Properties\PublishProfiles\Toolsweb.pubxml
+ E:\WORK\代码管理\T系列\播种\Epost.TestToolsWeb\Properties\PublishProfiles\Toolsweb.pubxml
Release|Any CPU
diff --git a/Epost.TestToolsWeb/Properties/PublishProfiles/Toolsweb.pubxml.user b/Epost.TestToolsWeb/Properties/PublishProfiles/Toolsweb.pubxml.user
index 5dd0de5..af74de3 100644
--- a/Epost.TestToolsWeb/Properties/PublishProfiles/Toolsweb.pubxml.user
+++ b/Epost.TestToolsWeb/Properties/PublishProfiles/Toolsweb.pubxml.user
@@ -7,12 +7,12 @@
<_PublishTargetUrl>D:\驿传\抚远
- True|2023-12-15T03:52:56.4144409Z;True|2023-09-14T15:16:49.3254427+08:00;True|2023-09-14T15:15:13.5226711+08:00;True|2023-09-14T13:29:32.8021478+08:00;True|2023-09-13T10:41:55.1565224+08:00;True|2023-09-11T11:07:13.1727541+08:00;True|2023-09-04T13:33:29.7459963+08:00;True|2023-09-01T16:56:41.0563400+08:00;False|2023-09-01T16:55:48.4344805+08:00;True|2023-09-01T13:48:48.7619456+08:00;False|2023-09-01T13:47:55.1222255+08:00;True|2023-08-31T12:12:45.4579572+08:00;False|2023-08-31T12:03:58.6171819+08:00;False|2023-08-31T12:03:32.2416438+08:00;True|2023-08-29T14:40:55.7436382+08:00;True|2023-08-29T13:53:07.9540335+08:00;True|2023-08-28T18:11:01.9231397+08:00;True|2023-08-28T14:56:19.8843265+08:00;True|2023-08-23T11:17:33.7204155+08:00;True|2023-08-11T10:59:03.8399200+08:00;True|2023-08-10T10:43:16.0729140+08:00;True|2023-08-08T15:22:08.0127989+08:00;True|2023-08-08T13:59:07.6838749+08:00;True|2023-08-08T13:57:15.7160673+08:00;True|2023-08-03T15:39:49.2488696+08:00;True|2023-08-03T13:13:24.0839734+08:00;True|2023-08-02T14:19:21.5188473+08:00;True|2023-08-02T10:44:46.7436910+08:00;True|2023-08-01T10:42:26.5280618+08:00;True|2023-07-28T15:54:24.3172356+08:00;True|2023-07-25T17:25:54.2443213+08:00;True|2023-07-25T17:24:33.4620388+08:00;True|2023-07-19T16:26:31.8476193+08:00;True|2023-07-19T16:04:27.8753884+08:00;True|2023-07-19T15:38:50.9706808+08:00;True|2023-07-03T13:53:41.0701316+08:00;True|2023-04-27T20:14:15.0331014+08:00;True|2023-04-21T16:37:45.9559800+08:00;True|2023-04-20T19:12:32.4520337+08:00;True|2023-04-20T18:51:17.9201241+08:00;True|2023-04-20T16:36:34.8353434+08:00;True|2023-04-19T11:42:01.7398184+08:00;True|2023-04-19T11:37:42.0024926+08:00;True|2023-04-18T15:36:56.8763198+08:00;True|2023-04-18T14:56:45.8672402+08:00;True|2023-04-17T10:51:00.4138485+08:00;True|2023-04-16T18:42:38.2510554+08:00;False|2023-04-16T18:42:10.5319125+08:00;True|2023-04-16T18:32:05.9038034+08:00;True|2023-04-16T17:11:22.6510841+08:00;True|2022-07-15T16:41:13.9750291+08:00;True|2022-07-14T14:02:20.7983427+08:00;True|2022-07-13T17:40:22.7531000+08:00;True|2022-07-13T17:34:22.9908701+08:00;True|2022-07-13T17:30:06.3588502+08:00;True|2022-07-11T10:32:06.9053981+08:00;True|2021-04-26T10:07:37.4889549+08:00;True|2021-04-09T10:32:51.9130162+08:00;True|2021-04-09T10:31:50.4974012+08:00;
+ True|2024-01-12T08:47:12.8225374Z;True|2024-01-09T16:40:45.8685271+08:00;True|2024-01-09T16:17:52.3267113+08:00;True|2024-01-05T16:08:42.8957009+08:00;True|2023-12-15T11:52:56.4144409+08:00;True|2023-09-14T15:16:49.3254427+08:00;True|2023-09-14T15:15:13.5226711+08:00;True|2023-09-14T13:29:32.8021478+08:00;True|2023-09-13T10:41:55.1565224+08:00;True|2023-09-11T11:07:13.1727541+08:00;True|2023-09-04T13:33:29.7459963+08:00;True|2023-09-01T16:56:41.0563400+08:00;False|2023-09-01T16:55:48.4344805+08:00;True|2023-09-01T13:48:48.7619456+08:00;False|2023-09-01T13:47:55.1222255+08:00;True|2023-08-31T12:12:45.4579572+08:00;False|2023-08-31T12:03:58.6171819+08:00;False|2023-08-31T12:03:32.2416438+08:00;True|2023-08-29T14:40:55.7436382+08:00;True|2023-08-29T13:53:07.9540335+08:00;True|2023-08-28T18:11:01.9231397+08:00;True|2023-08-28T14:56:19.8843265+08:00;True|2023-08-23T11:17:33.7204155+08:00;True|2023-08-11T10:59:03.8399200+08:00;True|2023-08-10T10:43:16.0729140+08:00;True|2023-08-08T15:22:08.0127989+08:00;True|2023-08-08T13:59:07.6838749+08:00;True|2023-08-08T13:57:15.7160673+08:00;True|2023-08-03T15:39:49.2488696+08:00;True|2023-08-03T13:13:24.0839734+08:00;True|2023-08-02T14:19:21.5188473+08:00;True|2023-08-02T10:44:46.7436910+08:00;True|2023-08-01T10:42:26.5280618+08:00;True|2023-07-28T15:54:24.3172356+08:00;True|2023-07-25T17:25:54.2443213+08:00;True|2023-07-25T17:24:33.4620388+08:00;True|2023-07-19T16:26:31.8476193+08:00;True|2023-07-19T16:04:27.8753884+08:00;True|2023-07-19T15:38:50.9706808+08:00;True|2023-07-03T13:53:41.0701316+08:00;True|2023-04-27T20:14:15.0331014+08:00;True|2023-04-21T16:37:45.9559800+08:00;True|2023-04-20T19:12:32.4520337+08:00;True|2023-04-20T18:51:17.9201241+08:00;True|2023-04-20T16:36:34.8353434+08:00;True|2023-04-19T11:42:01.7398184+08:00;True|2023-04-19T11:37:42.0024926+08:00;True|2023-04-18T15:36:56.8763198+08:00;True|2023-04-18T14:56:45.8672402+08:00;True|2023-04-17T10:51:00.4138485+08:00;True|2023-04-16T18:42:38.2510554+08:00;False|2023-04-16T18:42:10.5319125+08:00;True|2023-04-16T18:32:05.9038034+08:00;True|2023-04-16T17:11:22.6510841+08:00;True|2022-07-15T16:41:13.9750291+08:00;True|2022-07-14T14:02:20.7983427+08:00;True|2022-07-13T17:40:22.7531000+08:00;True|2022-07-13T17:34:22.9908701+08:00;True|2022-07-13T17:30:06.3588502+08:00;True|2022-07-11T10:32:06.9053981+08:00;True|2021-04-26T10:07:37.4889549+08:00;True|2021-04-09T10:32:51.9130162+08:00;True|2021-04-09T10:31:50.4974012+08:00;
- 04/16/2023 15:06:26
+ 04/04/2018 15:45:12
09/08/2020 11:00:51
@@ -30,31 +30,31 @@
02/22/2013 08:43:40
- 04/16/2023 15:06:26
+ 04/04/2018 15:45:12
- 12/15/2023 11:52:28
+ 01/12/2024 16:47:09
- 12/15/2023 11:52:28
+ 01/12/2024 16:47:09
02/24/2020 15:29:24
- 12/15/2023 11:52:01
+ 01/12/2024 16:46:58
- 12/15/2023 11:52:01
+ 01/12/2024 16:46:58
- 04/16/2023 15:06:26
+ 04/29/2020 16:50:14
- 04/16/2023 15:06:26
+ 05/24/2022 23:14:52
- 04/16/2023 15:06:26
+ 05/24/2022 23:14:52
10/23/2017 13:15:18
@@ -63,49 +63,49 @@
10/23/2017 13:15:20
- 12/15/2023 11:52:05
+ 01/12/2024 16:46:59
- 12/15/2023 11:52:05
+ 01/12/2024 16:46:59
08/26/2020 18:09:48
- 12/15/2023 11:52:03
+ 01/12/2024 16:46:58
- 12/15/2023 11:52:03
+ 01/12/2024 16:46:58
- 12/15/2023 11:52:12
+ 01/12/2024 16:47:01
- 12/15/2023 11:52:12
+ 01/12/2024 16:47:01
- 12/01/2023 12:58:20
+ 01/12/2024 16:46:58
- 12/01/2023 12:58:20
+ 01/12/2024 16:46:58
09/06/2018 11:57:11
- 04/16/2023 15:06:26
+ 12/15/2021 17:55:08
- 04/16/2023 15:06:26
+ 12/15/2021 17:55:08
- 04/16/2023 15:06:26
+ 04/29/2020 16:50:14
- 04/16/2023 15:06:26
+ 04/29/2020 16:50:14
- 04/16/2023 15:06:26
+ 08/10/2018 18:51:54
08/09/2019 08:40:22
@@ -180,7 +180,7 @@
07/25/2012 11:48:56
- 04/16/2023 15:06:26
+ 12/15/2021 17:55:08
03/24/2018 17:44:14
@@ -207,7 +207,7 @@
04/30/2019 16:46:06
- 04/16/2023 15:06:26
+ 12/15/2021 17:55:08
06/18/2015 20:19:46
@@ -279,1594 +279,1594 @@
07/17/2013 17:03:52
- 10/23/2017 21:15:34
+ 10/23/2017 13:15:34
- 10/23/2017 21:15:34
+ 10/23/2017 13:15:34
- 04/04/2015 01:09:32
+ 04/03/2015 17:09:32
- 04/04/2015 01:09:34
+ 04/03/2015 17:09:34
- 04/04/2015 01:09:34
+ 04/03/2015 17:09:34
- 02/13/2015 21:23:48
+ 02/13/2015 13:23:48
- 02/13/2015 21:23:48
+ 02/13/2015 13:23:48
- 02/13/2015 21:23:48
+ 02/13/2015 13:23:48
- 02/13/2015 21:23:50
+ 02/13/2015 13:23:50
- 02/13/2015 21:23:50
+ 02/13/2015 13:23:50
- 02/13/2015 21:23:50
+ 02/13/2015 13:23:50
- 02/13/2015 21:23:50
+ 02/13/2015 13:23:50
- 01/28/2015 12:02:44
+ 01/28/2015 04:02:44
- 01/28/2015 12:04:32
+ 01/28/2015 04:04:32
- 01/28/2015 12:02:56
+ 01/28/2015 04:02:56
- 01/28/2015 12:03:48
+ 01/28/2015 04:03:48
- 01/28/2015 12:02:22
+ 01/28/2015 04:02:22
- 02/11/2014 23:28:40
+ 02/11/2014 15:28:40
- 01/28/2015 12:02:34
+ 01/28/2015 04:02:34
- 01/28/2015 12:04:32
+ 01/28/2015 04:04:32
- 01/28/2015 12:04:32
+ 01/28/2015 04:04:32
- 01/28/2015 12:04:32
+ 01/28/2015 04:04:32
- 04/16/2023 15:06:26
+ 03/08/2019 10:56:53
- 04/16/2023 15:06:26
+ 03/11/2019 11:19:17
- 04/16/2023 15:06:26
+ 04/04/2018 15:44:48
- 04/16/2023 15:06:26
+ 04/04/2018 15:44:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:50
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:49
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:48
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:47
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:26
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:46
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:45
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:45
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:45
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:45
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:45
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:45
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:45
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:45
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:45
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:45
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:45
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:45
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:45
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:45
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:45
- 04/16/2023 15:06:27
+ 09/08/2020 11:00:45
- 04/16/2023 15:06:27
+ 04/10/2018 10:38:26
- 04/16/2023 15:06:27
+ 12/15/2021 17:55:08
- 04/16/2023 15:06:27
+ 10/07/2018 16:09:02
- 04/16/2023 15:06:27
+ 12/15/2021 17:55:08
- 04/16/2023 15:06:27
+ 04/10/2018 10:38:26
- 04/16/2023 15:06:27
+ 04/10/2018 10:38:26
- 04/16/2023 15:06:27
+ 05/04/2018 17:27:14
- 04/16/2023 15:06:27
+ 04/10/2018 10:38:26
- 04/16/2023 15:06:27
+ 08/23/2018 13:45:38
- 04/16/2023 15:06:27
+ 04/10/2018 10:38:26
- 04/16/2023 15:06:27
+ 05/30/2022 16:58:47
- 04/16/2023 15:06:27
+ 04/10/2018 10:38:26
- 04/16/2023 15:06:27
+ 05/30/2022 16:58:47
- 04/16/2023 15:06:27
+ 08/28/2020 17:44:37
- 04/16/2023 15:06:27
+ 04/10/2018 10:38:26
- 04/16/2023 15:06:27
+ 04/10/2018 10:38:26
07/22/2019 10:28:09
@@ -5313,313 +5313,313 @@
07/22/2019 10:28:10
- 04/16/2023 15:06:27
+ 09/07/2020 14:43:44
- 04/16/2023 15:06:27
+ 12/15/2021 17:55:09
- 04/16/2023 15:06:27
+ 08/16/2018 11:17:56
- 04/16/2023 15:06:27
+ 02/28/2019 10:56:23
- 04/16/2023 15:06:27
+ 05/30/2022 16:58:47
- 04/16/2023 15:06:27
+ 05/30/2022 16:58:47
- 04/16/2023 15:06:27
+ 05/30/2022 16:58:47
- 04/16/2023 15:06:27
+ 08/16/2018 11:14:52
- 04/16/2023 15:06:27
+ 06/07/2018 17:50:14
- 04/16/2023 15:06:27
+ 06/07/2018 17:50:14
- 04/16/2023 15:06:27
+ 06/07/2018 17:50:14
- 04/16/2023 15:06:27
+ 06/07/2018 17:50:14
- 04/16/2023 15:06:27
+ 06/07/2018 17:50:14
- 04/16/2023 15:06:27
+ 06/07/2018 17:50:14
- 04/16/2023 15:06:27
+ 06/07/2018 17:50:14
- 04/16/2023 15:06:27
+ 06/07/2018 17:50:14
- 04/16/2023 15:06:27
+ 06/07/2018 17:50:14
- 04/16/2023 15:06:27
+ 06/07/2018 17:50:14
- 04/16/2023 15:06:27
+ 06/07/2018 17:50:14
- 04/16/2023 15:06:27
+ 06/07/2018 17:50:14
- 04/16/2023 15:06:27
+ 06/07/2018 17:50:14
- 04/16/2023 15:06:27
+ 12/15/2021 17:55:09
- 04/16/2023 15:06:27
+ 06/07/2018 17:50:14
- 04/16/2023 15:06:27
+ 06/07/2018 17:50:14
- 04/16/2023 15:06:27
+ 06/07/2018 18:07:22
- 04/16/2023 15:06:27
+ 06/07/2018 15:22:00
- 04/16/2023 15:06:27
+ 04/29/2020 16:58:24
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 02/27/2019 13:47:57
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 04/29/2020 16:58:24
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/13/2018 11:03:04
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/13/2018 11:02:26
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/13/2018 11:01:52
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/13/2018 11:01:16
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/13/2018 11:00:24
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/13/2018 11:14:46
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 02/27/2019 11:50:09
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 09/07/2018 13:37:56
- 04/16/2023 15:06:27
+ 06/07/2018 17:50:16
- 04/16/2023 15:06:27
+ 06/07/2018 17:50:16
- 04/16/2023 15:06:27
+ 05/23/2019 10:06:36
- 04/16/2023 15:06:27
+ 06/07/2018 15:43:16
- 04/16/2023 15:06:27
+ 06/08/2018 15:56:36
- 04/16/2023 15:06:27
+ 08/16/2018 11:12:44
- 04/16/2023 15:06:27
+ 06/07/2018 16:32:58
- 04/16/2023 15:06:27
+ 06/07/2018 17:50:18
- 04/16/2023 15:06:27
+ 06/08/2018 15:23:28
- 04/16/2023 15:06:27
+ 06/07/2018 16:32:58
- 04/16/2023 15:06:27
+ 06/08/2018 15:23:28
- 04/16/2023 15:06:27
+ 06/07/2018 16:32:58
- 04/16/2023 15:06:27
+ 10/29/2018 14:36:18
- 04/16/2023 15:06:27
+ 05/23/2019 10:06:36
- 04/16/2023 15:06:27
+ 03/05/2020 14:03:59
- 04/16/2023 15:06:27
+ 10/07/2018 16:12:54
- 04/16/2023 15:06:27
+ 10/07/2018 16:12:54
- 04/16/2023 15:06:27
+ 10/07/2018 16:12:50
- 04/16/2023 15:06:27
+ 10/07/2018 16:12:54
- 04/16/2023 15:06:27
+ 12/15/2021 17:55:09
- 04/16/2023 15:06:27
+ 05/30/2022 16:58:47
- 04/16/2023 15:06:27
+ 08/28/2020 17:44:37
- 04/16/2023 15:06:27
+ 05/23/2019 10:06:36
- 04/16/2023 15:06:27
+ 05/23/2019 10:06:36
- 04/16/2023 15:06:27
+ 05/14/2018 15:39:50
- 04/16/2023 15:06:27
+ 12/15/2021 17:55:09
- 04/16/2023 15:06:26
+ 04/04/2018 15:44:46
- 04/16/2023 15:06:27
+ 03/08/2019 10:56:53
- 04/16/2023 15:06:27
+ 04/04/2018 15:44:46
04/04/2018 15:44:48
@@ -5637,22 +5637,22 @@
04/04/2018 15:44:46
- 04/16/2023 15:06:27
+ 08/28/2020 17:44:38
- 04/16/2023 15:06:27
+ 08/28/2020 17:44:38
- 04/16/2023 15:06:27
+ 08/28/2020 17:44:38
- 04/16/2023 15:06:27
+ 08/28/2020 17:44:38
- 04/16/2023 15:06:27
+ 05/30/2022 16:58:47
- 12/15/2023 11:52:17
+ 01/12/2024 16:47:04
04/04/2018 15:45:12
@@ -5682,7 +5682,7 @@
03/14/2019 11:43:46
- 04/16/2023 15:06:27
+ 05/30/2022 16:58:47
08/28/2020 17:44:38
@@ -5721,22 +5721,22 @@
04/23/2021 13:42:35
- 04/16/2023 15:06:27
+ 09/07/2018 11:31:18
- 04/16/2023 15:06:27
+ 03/07/2019 17:09:19
- 04/16/2023 15:06:27
+ 03/11/2019 11:11:06
- 04/16/2023 15:06:27
+ 09/07/2018 11:31:18
- 04/16/2023 15:06:27
+ 09/07/2018 11:31:18
- 04/16/2023 15:06:27
+ 09/07/2018 11:31:18
03/11/2019 13:54:28
@@ -7248,7 +7248,7 @@
04/04/2018 15:44:56
- 04/16/2023 15:06:27
+ 04/04/2018 17:14:48
04/04/2018 17:14:48
@@ -7386,7 +7386,7 @@
04/08/2018 17:39:24
- 04/16/2023 15:06:27
+ 07/04/2022 15:17:09
08/28/2020 17:44:38
@@ -7566,16 +7566,16 @@
04/23/2021 13:42:36
- 04/16/2023 15:06:27
+ 08/28/2020 17:44:39
- 04/16/2023 15:06:27
+ 07/04/2022 14:22:38
- 12/01/2023 12:58:30
+ 01/05/2024 16:08:32
- 12/01/2023 12:54:48
+ 01/04/2024 15:31:05
\ No newline at end of file
diff --git a/Epost.TestToolsWeb/WebService/WebService.asmx.cs b/Epost.TestToolsWeb/WebService/WebService.asmx.cs
index 9eb07bb..9ceaa38 100644
--- a/Epost.TestToolsWeb/WebService/WebService.asmx.cs
+++ b/Epost.TestToolsWeb/WebService/WebService.asmx.cs
@@ -3,6 +3,7 @@ using Epost.Common;
using Epost.DAL;
using Epost.DAL.Cache;
using Epost.Model;
+using PTLSystems.Service.PublicF;
using System;
using System.Collections.Generic;
using System.Data;
@@ -59,7 +60,7 @@ namespace Epost.DPS.WebService
{
var ReturnDt = set.Tables["pick"];
DataTable dtResult = ReturnDt.Clone();
-
+ string str = string.Empty;
foreach (DataRow item in ReturnDt.Rows)
{
@@ -69,6 +70,7 @@ namespace Epost.DPS.WebService
DataTable locdt = bll.GetlocationInfo(item["areaId"].ToString());
if (locdt != null && locdt.Rows.Count > 0)
{
+ locdt.Columns.Add("strinfo", typeof(string));
DataRow dataRow = dtResult.NewRow();
dataRow["transderMid"] = item["transderMid"].ToString();
dataRow["transderDid"] = item["transderDid"].ToString();
@@ -88,12 +90,15 @@ namespace Epost.DPS.WebService
dataRow["lookListen"] = item["lookListen"].ToString();
dataRow["labelIP"] = item["labelIP"].ToString();
dataRow["labelNo"] = item["labelNo"].ToString();
+ dataRow["strinfo"] = dataRow["strinfo"] + str;
dtResult.Rows.Add(dataRow);
}
else
{
LogHelper.WriteLogInfo("" + item["areaId"].ToString() + ",该货位不存在");
+ str = str + item["areaId"].ToString() + "|";
+
}
}
else
@@ -137,6 +142,8 @@ namespace Epost.DPS.WebService
diclist.Add("lookListen", "looklisten");
diclist.Add("labelIP", "labelIP");
diclist.Add("labelNo", "labelno");
+ diclist.Add("strinfo", "clientcode");
+
bool b = bll.ImportOrderinfo(dtResult, diclist);
if (b)