import BaseService from "../baseService";
|
import { BaseProvider } from "../../entity/basicInfo/base/baseProvider";
|
import { Not } from "typeorm";
|
|
/**
|
* 物料信息
|
*/
|
export default class ConsignorService extends BaseService {
|
/**
|
* 添加保存前事件
|
*/
|
public async onAddSaveBefore(t: BaseProvider, isAdd: boolean) {
|
let userInfo = await this.userInfo;
|
this.info.result = true;
|
//判断条码是否重复
|
if (isAdd) {
|
let contractInfo = await this.dbRead.findOne(BaseProvider, {
|
userProduct_Id: userInfo.userProduct_Id,
|
providerShortName: t.providerShortName
|
});
|
if (contractInfo) {
|
this.info.result = false;
|
this.info.msg = `当前供应商${t.providerShortName}已存在不允许重复添加,无法添加!`;
|
}
|
} else {
|
let contractInfo = await this.dbRead.findOne(BaseProvider, {
|
userProduct_Id: t.userProduct_Id,
|
providerShortName: t.providerShortName,
|
provider_Id: Not(t.provider_Id)
|
});
|
if (contractInfo) {
|
this.info.result = false;
|
this.info.msg = `当前供应商${t.providerShortName}已存在不允许重复添加,无法添加!`;
|
}
|
}
|
return this.info;
|
}
|
}
|