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 onConfirm() {
|
let { ctx } = this;
|
let body = ctx.request.body;
|
// let userInfo = await ctx.helper.userInfo();
|
|
try {
|
if (body.borrowEnter_Id) {
|
const connection: any = await this.dbWrite.connection;
|
let request = new mssql.Request(connection.driver.master);
|
|
request.input("borrowEnter_Id", body.borrowEnter_Id);
|
request.input("Modifier", body.Modifier);
|
request.input("OutMsg", body.OutMsg);
|
await request.execute("sp_Storage_BorrowEnter_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
|
}
|