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
import BaseController from "../baseController";
import { Post } from "egg-shell-decorators";
import { TMSWayBill } from "../../entity/express/tms/tmsWayBill";
import { TMSWayBillAbnormal } from "../../entity/express/tms/tmsWayBillAbnormal";
 
/**
 * 异常处理
 */
export default class WaybillAbnormalController extends BaseController {
  //#region 获取运单异常信息
  @Post()
  public async getWayBillAbnormalList() {
    let { ctx } = this;
    let body = ctx.request.body;
    try {
      let billInfo = await this.dbRead.find(TMSWayBillAbnormal, {
        wayBillCode: body.wayBillCode
      });
      this.info.data = billInfo;
      this.info.result = true;
    } catch (ex) {
      this.info.result = false;
      this.info.msg = ex.message;
    }
    ctx.body = this.info;
  }
  //#endregion
 
  //#region (处理中)(处理完成)
  /**
   * (处理中)(处理完成)
   */
  @Post()
  public async updateAbnormal() {
    let { ctx } = this;
    let body = ctx.request.body;
    try {
      let wb = await this.dbRead.findOne(TMSWayBill, {
        wayBillCode: body.wayBillCode
      });
      if (wb != null) {
        // 轨迹数据
        await ctx.service.tms.wayBillHelper.setStatusHistory(wb, body.type, body.type);
 
        //var wb= TMS_WayBillRepository.Instance.Get("wayBillCode='"+body.Code+"'");
        wb.orderStatus = body.type;
        wb.abnormalDate = new Date();
        wb.abnormalReason = body.abnormalReason;
        await this.dbWrite.save(wb);
 
        let abnormalInfo = new TMSWayBillAbnormal();
        abnormalInfo.wayBill_Id = wb.wayBill_Id;
        abnormalInfo.wayBillCode = wb.wayBillCode;
        abnormalInfo.abnormalDate = new Date();
        abnormalInfo.abnormal = body.Value;
        abnormalInfo.abnormalStatus = body.type; //操作状态
        abnormalInfo.abnormalRemark = body.abnormalRemark; //备注
        await this.dbWrite.save(abnormalInfo);
      }
      this.info.result = true;
      this.info.msg = "已保存";
    } catch (ex) {
      this.info.result = false;
      this.info.msg = ex.message;
    }
    ctx.body = this.info;
  }
  //#endregion
}