333
schangxiang@126.com
2025-09-19 18966e02fb573c7e2bb0c6426ed792b38b910940
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
import { default as BaseController } from "../baseController";
import { Post } from "egg-shell-decorators";
 
/**
 * TMS首页统计数据
 */
export default class TmsController extends BaseController {
  //#region TMS首页第一屏统计
  /**
   * TMS首页第一屏统计
   */
  @Post()
  public async getTmsNumStatistics() {
    let { ctx } = this;
    let redis = ctx.app.redis.clients.get("common");
    let userInfo = await ctx.helper.userInfo();
    let key = "REDIS_" + userInfo.userProduct_Id + "DASHBORAD_GETTMSNUMSTATISTICS";
    try {
      let cacheValue = await redis.get(key);
      if (cacheValue) {
        this.info.result = true;
        this.info.data = JSON.parse(cacheValue);
        ctx.body = this.info;
        return;
      }
      let where = "";
      if (userInfo.userType === "consignor") {
        where = " consignor_Id=" + userInfo.consignor_Id;
        key += "_" + userInfo.consignor_Id;
      }
      let sql = "SELECT COUNT(1) as cnt FROM dbo.TMS_WayBill Where userProduct_Id=" + userInfo.userProduct_Id;
      if (userInfo.userType === "consignor") {
        sql += " where " + where;
      }
      let wayBillNum = (await this.dbRead.query(sql))[0].cnt;
 
      sql =
        "SELECT COUNT(1) as cnt FROM dbo.TMS_WayBill WHERE OrderStatus='已提交' And userProduct_Id=" +
        userInfo.userProduct_Id;
      if (userInfo.userType === "consignor") {
        sql += " and " + where;
      }
      let waitWayBillNum = (await this.dbRead.query(sql))[0].cnt;
 
      sql =
        "SELECT COUNT(1) as cnt FROM dbo.Base_ProductInfo  WHERE Auditing=0 And userProduct_Id=" +
        userInfo.userProduct_Id;
      if (userInfo.userType === "consignor") {
        sql += " and " + where;
      }
      let waitProductNum = (await this.dbRead.query(sql))[0].cnt;
 
      sql = `SELECT  COUNT(1) as cnt FROM TMS_WayBill WHERE CollectStatus='已揽收' AND OrderStatus IN ('已提交','审核成功','录入异常','组板异常','处理中','处理完成') And
        userProduct_Id=${userInfo.userProduct_Id}`;
      if (userInfo.userType === "consignor") {
        sql += " and " + where;
      }
      let noGroupWayBillNum = (await this.dbRead.query(sql))[0].cnt;
 
      let dataInfo: any = {};
      dataInfo.wayBillNum = wayBillNum;
      dataInfo.waitWayBillNum = waitWayBillNum;
      dataInfo.waitProductNum = waitProductNum;
      dataInfo.noGroupWayBillNum = noGroupWayBillNum;
      this.info.result = true;
      this.info.data = dataInfo;
 
      // 缓存数据
      await redis.set(key, JSON.stringify(dataInfo));
      await redis.expire(key, 60 * 60 * 3);
    } catch (ex) {
      this.info.msg = ex.message;
      this.info.result = false;
    }
    ctx.body = this.info;
  }
  //#endregion
 
  //#region TMS首页第二屏左侧统计
  /**
   * TMS首页第二屏左侧统计
   */
  @Post()
  public async getWayBillNumStatistics() {
    let { ctx } = this;
    let body = ctx.request.body;
    let redis = ctx.app.redis.clients.get("common");
    let userInfo = await ctx.helper.userInfo();
    let key = "REDIS_" + userInfo.userProduct_Id + "DASHBORAD_GETWAYBILLNUMSTATISTICS";
    try {
      let where = "userProduct_Id=" + userInfo.userProduct_Id;
      if (userInfo.userType === "consignor") {
        where = " consignor_Id=" + userInfo.consignor_Id;
        key += "_" + userInfo.consignor_Id;
      }
      let cacheValue = await redis.get(key);
      if (cacheValue) {
        this.info.result = true;
        this.info.data = JSON.parse(cacheValue);
        ctx.body = this.info;
        return;
      }
 
      if (body.dateType == "今日") {
        where += "and DateDiff(dd,CreateDate,getdate())=0";
      } else if (body.dateType == "近两日") {
        where += "and DateDiff(dd,CreateDate,getdate())<=1";
      } else if (body.dateType == "近一星期") {
        where += "and DateDiff(dd,CreateDate,getdate())<=6";
      } else if (body.dateType == "近一月") {
        where += "and DateDiff(dd,CreateDate,getdate())<=30";
      } else if (body.dateType == "近三月") {
        where += "and DateDiff(dd,CreateDate,getdate())<=90";
      } else if (body.dateType == "近半年") {
        where += "and DateDiff(dd,CreateDate,getdate())<=180";
      } else if (body.dateType == "近一年") {
        where += "and DateDiff(dd,CreateDate,getdate())<=365";
      }
      let dataInfo: any = {};
      let sql = "SELECT COUNT(1) as cnt FROM dbo.TMS_WayBill  WHERE  1=1 " + where;
      let wayBillNum = (await this.dbRead.query(sql))[0].cnt;
 
      sql = "SELECT COUNT(1) as cnt FROM dbo.TMS_WayBill  WHERE CollectStatus='已揽收' " + where;
      let acceptWayBillNum = (await this.dbRead.query(sql))[0].cnt;
 
      sql =
        "SELECT COUNT(1) as cnt FROM  TMS_WayBill WHERE ( CollectStatus='未揽收' OR CollectStatus is NULL ) " + where;
      let noAcceptWayBillNum = (await this.dbRead.query(sql))[0].cnt;
 
      sql = "SELECT COUNT(1) as cnt FROM  TMS_WayBill WHERE OrderStatus='已组板' " + where;
      let endWayBillNum = (await this.dbRead.query(sql))[0].cnt;
 
      dataInfo.noAcceptWayBillNum = noAcceptWayBillNum;
      dataInfo.acceptWayBillNum = acceptWayBillNum;
      dataInfo.endWayBillNum = endWayBillNum;
      dataInfo.wayBillNum = wayBillNum;
 
      this.info.result = true;
      this.info.data = dataInfo;
 
      // 缓存数据
      await redis.set(key, JSON.stringify(dataInfo));
      await redis.expire(key, 60 * 60 * 3);
    } catch (ex) {
      this.info.msg = ex.message;
      this.info.result = false;
    }
    ctx.body = this.info;
  }
  //#endregion
 
  //#region TMS首页第二屏右侧统计
  /**
   * TMS首页第二屏右侧统计
   */
  @Post()
  public async getHistogramNumStatistics() {
    let { ctx } = this;
    let numStatisticsList: Array<any> = [];
    let redis = ctx.app.redis.clients.get("common");
    let userInfo = await ctx.helper.userInfo();
    let key = "REDIS_" + userInfo.userProduct_Id + "DASHBORAD_GETHISTOGRAMNUMSTATISTICS";
    try {
      let where = "userProduct_Id=" + userInfo.userProduct_Id;
      if (userInfo.userType === "consignor") {
        where = " AND consignor_Id=" + userInfo.consignor_Id;
        key += "_" + userInfo.consignor_Id;
      }
      let cacheValue = await redis.get(key);
      if (cacheValue) {
        this.info.result = true;
        this.info.data = JSON.parse(cacheValue);
        ctx.body = this.info;
        return;
      }
 
      let sql = `SELECT year(CreateDate) as year,month(CreateDate) as month,count(1) as count 
        from TMS_WayBill 
        WHERE  year(CreateDate) IS NOT NULL AND month(CreateDate) IS NOT NULL${where}
        GROUP BY year(CreateDate), month(CreateDate)
        ORDER BY year(CreateDate), month(CreateDate)`;
      let dt = await this.dbRead.query(sql);
      for (let dr of dt) {
        let year = dr["year"];
        let month = dr["month"];
        let countWayBillNum = dr["count"];
        let dataInfo = {
          year: year,
          month: month,
          countWayBillNum: countWayBillNum
        };
        numStatisticsList.push(dataInfo);
      }
 
      this.info.result = true;
      this.info.data = numStatisticsList;
 
      // 缓存数据
      await redis.set(key, JSON.stringify(numStatisticsList));
      await redis.expire(key, 60 * 60 * 3);
    } catch (ex) {
      this.info.msg = ex.message;
      this.info.result = false;
    }
    ctx.body = this.info;
  }
  //#endregion
 
  //#region TMS首页第三屏统计
  /**
   * TMS首页第三屏统计
   */
  @Post()
  public async getWayBillLineStatistics() {
    let { ctx } = this;
    let body = ctx.request.body;
    let redis = ctx.app.redis.clients.get("common");
    let userInfo = await ctx.helper.userInfo();
    let key = "REDIS_" + userInfo.userProduct_Id + "DASHBORAD_GETWAYBILLLINESTATISTICS";
    try {
      let where = "";
      if (userInfo.userType === "consignor") {
        where = " consignor_Id=" + userInfo.consignor_Id;
        key += "_" + userInfo.consignor_Id;
      }
      let cacheValue = await redis.get(key);
      if (cacheValue) {
        this.info.result = true;
        this.info.data = JSON.parse(cacheValue);
        ctx.body = this.info;
        return;
      }
 
      if (body.dateType == "今日") {
        where += "and DateDiff(dd,CreateDate,getdate())=0";
      } else if (body.dateType == "近两日") {
        where += "and DateDiff(dd,CreateDate,getdate())<=1";
      } else if (body.dateType == "近一星期") {
        where += "and DateDiff(dd,CreateDate,getdate())<=6";
      } else if (body.dateType == "近一月") {
        where += "and DateDiff(dd,CreateDate,getdate())<=30";
      } else if (body.dateType == "近三月") {
        where += "and DateDiff(dd,CreateDate,getdate())<=90";
      } else if (body.dateType == "近半年") {
        where += "and DateDiff(dd,CreateDate,getdate())<=180";
      } else if (body.dateType == "近一年") {
        where += "and DateDiff(dd,CreateDate,getdate())<=365";
      }
      let numStatisticsList: Array<any> = [];
 
      let sql =
        "SELECT year(CreateDate) as year,month(CreateDate) as month,DAY(CreateDate) AS day,count(1) as count from TMS_WayBill where 1=1 " +
        where +
        " GROUP BY  year(CreateDate), month(CreateDate),DAY(CreateDate) ORDER BY year(CreateDate),month(CreateDate),DAY(CreateDate)";
      let dt = await this.dbRead.query(sql);
      for (let dr of dt) {
        let year = dr["year"];
        let month = dr["month"];
        let day = dr["day"];
        let countWayBillNum = dr["count"];
        let dataInfo = {
          year: year,
          month: month,
          day: day,
          countWayBillNum: countWayBillNum
        };
        numStatisticsList.push(dataInfo);
      }
 
      this.info.result = true;
      this.info.data = numStatisticsList;
 
      // 缓存数据
      await redis.set(key, JSON.stringify(numStatisticsList));
      await redis.expire(key, 60 * 60 * 3);
    } catch (ex) {
      this.info.msg = ex.message;
      this.info.result = false;
    }
    ctx.body = this.info;
  }
  //#endregion
 
  //#region 客户端首页第一屏统计
  /**
   * TMS首页第一屏统计
   */
  @Post()
  public async getUserNumStatistics() {
    let { ctx } = this;
    let userInfo = await ctx.helper.userInfo();
    let redis = ctx.app.redis.clients.get("common");
    const key = "REDIS_" + userInfo.consignor_Id + "DASHBORAD_GETUSERNUMSTATISTICS";
    try {
      let cacheValue = await redis.get(key);
      if (cacheValue) {
        this.info.result = true;
        this.info.data = JSON.parse(cacheValue);
        ctx.body = this.info;
        return;
      }
 
      let dataInfo: any = {};
      let sql = "SELECT COUNT(1) as cnt FROM dbo.TMS_WayBill where consignor_Id=" + userInfo.consignor_Id;
      let wayBillNum = (await this.dbRead.query(sql))[0].cnt;
 
      sql =
        "SELECT COUNT(1) as cnt FROM dbo.TMS_WayBill WHERE consignor_Id=" +
        userInfo.consignor_Id +
        "   AND  (PrintStatus='待打印' OR PrintStatus IS NULL)";
      let waitWayBillNum = (await this.dbRead.query(sql))[0].cnt;
 
      sql =
        "SELECT COUNT(1) as cnt FROM dbo.TMS_WayBill WHERE consignor_Id=" +
        userInfo.consignor_Id +
        "   AND  ConsigneeIdcard IS NULL";
      let waitProductNum = (await this.dbRead.query(sql))[0].cnt;
 
      sql =
        "SELECT COUNT(1) as cnt FROM dbo.TMS_WayBill WHERE consignor_Id=" +
        userInfo.consignor_Id +
        "  AND   OrderStatus='已退货'";
      let noGroupWayBillNum = (await this.dbRead.query(sql))[0].cnt;
      dataInfo.wayBillNum = wayBillNum;
      dataInfo.waitWayBillNum = waitWayBillNum;
      dataInfo.waitProductNum = waitProductNum;
      dataInfo.noGroupWayBillNum = noGroupWayBillNum;
      this.info.result = true;
      this.info.data = dataInfo;
 
      // 缓存数据
      await redis.set(key, JSON.stringify(dataInfo));
      await redis.expire(key, 60 * 60 * 3);
    } catch (ex) {
      this.info.msg = ex.message;
      this.info.result = false;
    }
    ctx.body = this.info;
  }
  //#endregion
 
  //#region 客户端首页第二屏左侧统计
  /**
   * TMS首页第二屏左侧统计
   */
  @Post()
  public async getUserWayBillNumStatistics() {
    let { ctx } = this;
    let body = ctx.request.body;
    let userInfo = await ctx.helper.userInfo();
    let redis = ctx.app.redis.clients.get("common");
    const key = "REDIS_" + userInfo.consignor_Id + "DASHBORAD_GETUSERWAYBILLNUMSTATISTICS";
    try {
      // let cacheValue = await redis.get(key);
      // if (cacheValue) {
      //   this.info.result = true;
      //   this.info.data = JSON.parse(cacheValue);
      //   ctx.body = this.info;
      //   return;
      // }
 
      let where = "";
      if (body.dateType == "今日") {
        where += " and DateDiff(dd,CreateDate,getdate())=0";
      } else if (body.dateType == "近两日") {
        where += " and DateDiff(dd,CreateDate,getdate())<=1";
      } else if (body.dateType == "近一星期") {
        where += " and DateDiff(dd,CreateDate,getdate())<=6";
      } else if (body.dateType == "近一月") {
        where += " and DateDiff(dd,CreateDate,getdate())<=30";
      } else if (body.dateType == "近三月") {
        where += " and DateDiff(dd,CreateDate,getdate())<=90";
      } else if (body.dateType == "近半年") {
        where += " and DateDiff(dd,CreateDate,getdate())<=180";
      } else if (body.dateType == "近一年") {
        where += " and DateDiff(dd,CreateDate,getdate())<=365";
      }
      let dataInfo: any = {};
      let sql = "SELECT COUNT(1) as cnt FROM dbo.TMS_WayBill  WHERE   consignor_Id=" + userInfo.consignor_Id + where;
      let wayBillNum = (await this.dbRead.query(sql))[0].cnt;
 
      sql =
        "SELECT COUNT(1) as cnt FROM dbo.TMS_WayBill  WHERE consignor_Id=" +
        userInfo.consignor_Id +
        " and CollectStatus ='已揽收' " +
        where;
      let acceptWayBillNum = (await this.dbRead.query(sql))[0].cnt;
 
      sql =
        "SELECT COUNT(1) as cnt  FROM  TMS_WayBill WHERE consignor_Id=" +
        userInfo.consignor_Id +
        " and ( CollectStatus='未揽收' OR CollectStatus is NULL) " +
        where;
      let noAcceptWayBillNum = (await this.dbRead.query(sql))[0].cnt;
 
      sql =
        "SELECT COUNT(1) as cnt  FROM  TMS_WayBill WHERE consignor_Id=" +
        userInfo.consignor_Id +
        " and OrderStatus='处理完成' " +
        where;
      let endWayBillNum = (await this.dbRead.query(sql))[0].cnt;
 
      dataInfo.noAcceptWayBillNum = noAcceptWayBillNum;
      dataInfo.acceptWayBillNum = acceptWayBillNum;
      dataInfo.endWayBillNum = endWayBillNum;
      dataInfo.wayBillNum = wayBillNum;
      this.info.result = true;
      this.info.data = dataInfo;
 
      // 缓存数据
      await redis.set(key, JSON.stringify(dataInfo));
      await redis.expire(key, 60 * 60 * 3);
    } catch (ex) {
      this.info.msg = ex.message;
      this.info.result = false;
    }
    ctx.body = this.info;
  }
  //#endregion
 
  //#region 客户端首页第二屏右侧统计
  /**
   * 客户端首页第二屏右侧统计
   */
  @Post()
  public async getUserHistogramNumStatistics() {
    let { ctx } = this;
    let userInfo = await ctx.helper.userInfo();
    let redis = ctx.app.redis.clients.get("common");
    const key = "REDIS_" + userInfo.consignor_Id + "DASHBORAD_GETUSERHISTOGRAMNUMSTATISTICS";
    try {
      let cacheValue = await redis.get(key);
      if (cacheValue) {
        this.info.result = true;
        this.info.data = JSON.parse(cacheValue);
        ctx.body = this.info;
        return;
      }
 
      let sql =
        "SELECT year(CreateDate) as year,month(CreateDate) as month,count(1) as count from TMS_WayBill where consignor_Id=" +
        userInfo.consignor_Id +
        "  GROUP BY  year(CreateDate), month(CreateDate)";
      let dt = await this.dbRead.query(sql);
      this.info.result = true;
      this.info.data = dt;
 
      // 缓存数据
      await redis.set(key, JSON.stringify(dt));
      await redis.expire(key, 60 * 60 * 3);
    } catch (ex) {
      this.info.msg = ex.message;
      this.info.result = false;
    }
    ctx.body = this.info;
  }
  //#endregion
 
  //#region 客户端首页第三屏统计
  /**
   * 客户端首页第三屏统计
   */
  @Post()
  public async getUserWayBillLineStatistics() {
    let { ctx } = this;
    let body = ctx.request.body;
    let userInfo = await ctx.helper.userInfo();
    let redis = ctx.app.redis.clients.get("common");
    const key = "REDIS_" + userInfo.consignor_Id + "DASHBORAD_GETUSERWAYBILLLINESTATISTICS";
    try {
      let cacheValue = await redis.get(key);
      if (cacheValue) {
        this.info.result = true;
        this.info.data = JSON.parse(cacheValue);
        ctx.body = this.info;
        return;
      }
 
      let where = "";
      if (body.dateType == "今日") {
        where += " and DateDiff(dd,CreateDate,getdate())=0";
      } else if (body.dateType == "近两日") {
        where += " and DateDiff(dd,CreateDate,getdate())<=1";
      } else if (body.dateType == "近一星期") {
        where += " and DateDiff(dd,CreateDate,getdate())<=6";
      } else if (body.dateType == "近一月") {
        where += " and DateDiff(dd,CreateDate,getdate())<=30";
      } else if (body.dateType == "近三月") {
        where += " and DateDiff(dd,CreateDate,getdate())<=90";
      } else if (body.dateType == "近半年") {
        where += " and DateDiff(dd,CreateDate,getdate())<=180";
      } else if (body.dateType == "近一年") {
        where += " and DateDiff(dd,CreateDate,getdate())<=365";
      }
 
      let sql =
        "SELECT year(CreateDate) as year,month(CreateDate) as month,DAY(CreateDate) AS day,count(1) as count from TMS_WayBill where  consignor_Id=" +
        userInfo.consignor_Id +
        where +
        " GROUP BY  year(CreateDate), month(CreateDate),DAY(CreateDate)";
      let dt = await this.dbRead.query(sql);
 
      this.info.result = true;
      this.info.data = dt;
 
      // 缓存数据
      await redis.set(key, JSON.stringify(dt));
      await redis.expire(key, 60 * 60 * 3);
    } catch (ex) {
      this.info.msg = ex.message;
      this.info.result = false;
    }
    ctx.body = this.info;
  }
  //#endregion
}