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
import { default as BaseController } from "../baseController";
import { Post } from "egg-shell-decorators";
import * as mssql from "mssql";
 
export default class OuterController extends BaseController {
  //#region 开始分拣
  @Post()
  public async startSorting() {
    let { ctx } = this;
    let body = ctx.request.body;
    let userInfo = await ctx.helper.userInfo();
 
    try {
      if (body.borrowOuter_Id) {
        const connection: any = await this.dbWrite.connection;
        let request = new mssql.Request(connection.driver.master);
        request.input("borrowOuter_Id", body.borrowOuter_Id);
        request.input("user_Id", userInfo.user_Id);
        request.output("outMsg", mssql.NVarChar(2000));
        let result = await request.execute("sp_Storage_BorrowOuter_Sorting");
        let outMsg = result.output.outMsg;
        if (outMsg) {
          this.info.msg = outMsg;
          this.info.result = false;
          this.ctx.body = this.info;
          return;
        }
      }
      this.info.msg = "分拣完毕";
      this.info.result = true;
      this.ctx.body = this.info;
    } catch (ex) {
      this.info.msg = ex.message + "数据分拣失败请重试!";
      this.info.result = false;
      this.ctx.body = this.info;
    }
  }
  //#endregion
  //#region 审核
  @Post()
  public async onConfirm() {
    let { ctx } = this;
    let body = ctx.request.body;
    let userInfo = await ctx.helper.userInfo();
 
    try {
      if (body.borrowOuter_Id) {
        const connection: any = await this.dbWrite.connection;
        let request = new mssql.Request(connection.driver.master);
 
        request.input("borrowOuter_Id", body.borrowOuter_Id);
        request.input("user_Id", userInfo.user_Id);
        request.input("userTrueName", userInfo.userTrueName);
        await request.execute("sp_Storage_BorrowOuter_Check");
      }
      this.info.msg = "审核成功";
      this.info.result = true;
      this.ctx.body = this.info;
    } catch (ex) {
      this.info.msg = ex.message + "数据分拣失败请重试!";
      this.info.result = false;
      this.ctx.body = this.info;
    }
  }
  //#endregion
}