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
|
}
|