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
import BaseController from "../baseController";
import { Post } from "egg-shell-decorators";
import { TMSWayBill } from "../../entity/express/tms/tmsWayBill";
import { In } from "typeorm";
import { TMSRouterTask } from "../../entity/express/tmstask/tmsRouterTask";
 
/**
 * 路由获取任务
 */
export default class RouterTaskController extends BaseController {
  //#region EditStatus 修改状态
  @Post()
  public async editStatus() {
    let { ctx } = this;
    let body = ctx.request.body;
    try {
      if (!Array.isArray(body.wayBillCodes) || !body.wayBillCodes.length) {
        this.info.result = false;
        this.info.msg = "数据不存在";
        ctx.body = this.info;
        return;
      }
 
      await this.dbWrite.update(
        TMSRouterTask,
        {
          wayBillCode: In(body.wayBillCodes)
        },
        {
          taskStatus: body.taskStatus,
          orderStatus: body.orderStatus
        }
      );
      await this.dbWrite.update(
        TMSWayBill,
        {
          wayBillCode: In(body.wayBillCodes)
        },
        {
          orderStatus: body.orderStatus
        }
      );
      this.info.result = true;
      this.info.msg = "更新状态成功";
      ctx.body = this.info;
    } catch (ex) {
      this.info.result = false;
      this.info.msg = "异常" + ex.message;
      ctx.body = this.info;
    }
  }
  //#endregion
 
  //#region 获取运单路由
  @Post()
  public async getRouter() {
    let { ctx } = this;
    let body = ctx.request.body;
    if (!Array.isArray(body.wayBillCodes) || !body.wayBillCodes.length) {
      this.info.result = false;
      this.info.msg = "数据不存在";
      ctx.body = this.info;
      return;
    }
    try {
      for (var wayBillCode of body.wayBillCodes) {
        await ctx.service.tms.routerHelper.doAllRouter(`wayBillCode='${wayBillCode}'`, true);
      }
 
      this.info.result = true;
      this.info.msg = "执行完成";
 
      ctx.body = this.info;
    } catch (ex) {
      this.info.result = false;
      this.info.msg = "异常" + ex;
      ctx.body = this.info;
    }
  }
  //#endregion
}