更新货品审核的字典

This commit is contained in:
DESKTOP-369JRHT\12997 2023-10-31 18:08:17 +08:00
parent 9ea5b605ad
commit 3b64ce321f
4 changed files with 15 additions and 16 deletions

View File

@ -493,17 +493,17 @@ export default {
// //
async JudgmentButton(){ async JudgmentButton(){
let judgmentPermissions1 = await this.judgmentPermissions("退货审核"); let judgmentPermissions1 = await this.judgmentPermissions("商品报损审核");
if (judgmentPermissions1 > 0){ if (judgmentPermissions1 > 0){
this.auditFlag=false, this.auditFlag=false,
this.voidFlag=false this.voidFlag=false
} }
let judgmentPermissions2 = await this.judgmentPermissions("退货出库"); let judgmentPermissions2 = await this.judgmentPermissions("商品报损出库");
if (judgmentPermissions2 > 0){ if (judgmentPermissions2 > 0){
this.storageFlag = false this.storageFlag = false
} }
let judgmentPermissions3 = await this.judgmentPermissions("退货废止"); let judgmentPermissions3 = await this.judgmentPermissions("商品报损废止");
if (judgmentPermissions3 > 0){ if (judgmentPermissions3 > 0){
this.voidFlag=false this.voidFlag=false
}else { }else {
@ -526,13 +526,13 @@ export default {
let this_ = this let this_ = this
// //
if (this_.damageForm.orderNumber == null) { if (this_.damageForm.orderNumber == null) {
this.$modal.msgError("退货单号不能为空"); this.$modal.msgError("单号不能为空");
return -1; return -1;
}else if (this_.damageForm.orderDate == null) { }else if (this_.damageForm.orderDate == null) {
this.$modal.msgError("退货时间不能为空"); this.$modal.msgError("时间不能为空");
return -1; return -1;
}else if(this_.detailsList.length<=0) { }else if(this_.detailsList.length<=0) {
this.$modal.msgError("退货单不能为空"); this.$modal.msgError("单不能为空");
return -1; return -1;
} }
@ -597,7 +597,6 @@ export default {
// //
storage() { storage() {
let this_ = this; let this_ = this;
this.$confirm('确认后货损中的对应商品出库商品库存将发生变化,且不可逆,确认已按照货损单数量出库吗?', '提示', { this.$confirm('确认后货损中的对应商品出库商品库存将发生变化,且不可逆,确认已按照货损单数量出库吗?', '提示', {
confirmButtonText: '确定', confirmButtonText: '确定',
cancelButtonText: '取消', cancelButtonText: '取消',

View File

@ -500,17 +500,17 @@ export default {
// //
async JudgmentButton(){ async JudgmentButton(){
let judgmentPermissions1 = await this.judgmentPermissions("退货审核"); let judgmentPermissions1 = await this.judgmentPermissions("盘点商品审核");
if (judgmentPermissions1 > 0){ if (judgmentPermissions1 > 0){
this.auditFlag=false, this.auditFlag=false,
this.voidFlag=false this.voidFlag=false
} }
let judgmentPermissions2 = await this.judgmentPermissions("退货出库"); let judgmentPermissions2 = await this.judgmentPermissions("盘点商品入库");
if (judgmentPermissions2 > 0){ if (judgmentPermissions2 > 0){
this.storageFlag = false this.storageFlag = false
} }
let judgmentPermissions3 = await this.judgmentPermissions("退货废止"); let judgmentPermissions3 = await this.judgmentPermissions("盘点商品废止");
if (judgmentPermissions3 > 0){ if (judgmentPermissions3 > 0){
this.voidFlag=false this.voidFlag=false
}else { }else {

View File

@ -144,7 +144,7 @@ public class MtDamageServiceImpl implements MtDamageService {
@Override @Override
public boolean audit(Integer id) { public boolean audit(Integer id) {
String oilIntake = "退货审核"; String oilIntake = "商品报损审核";
int audit = iljStaffService.auditPrem(oilIntake); int audit = iljStaffService.auditPrem(oilIntake);
if (audit>0) { if (audit>0) {
// 根据id修改状态 // 根据id修改状态
@ -159,7 +159,7 @@ public class MtDamageServiceImpl implements MtDamageService {
@Override @Override
public boolean abolition(Integer id) { public boolean abolition(Integer id) {
String oilIntake = "退货废止"; String oilIntake = "商品报损废止";
int audit = iljStaffService.auditPrem(oilIntake); int audit = iljStaffService.auditPrem(oilIntake);
if (audit>0) { if (audit>0) {
String status = "yzf"; String status = "yzf";
@ -176,7 +176,7 @@ public class MtDamageServiceImpl implements MtDamageService {
@Transactional(rollbackFor = Exception.class) @Transactional(rollbackFor = Exception.class)
public boolean storage(Integer id) { public boolean storage(Integer id) {
AccountInfo nowAccountInfo = TokenUtil.getNowAccountInfo(); AccountInfo nowAccountInfo = TokenUtil.getNowAccountInfo();
String oilIntake = "退货出库"; String oilIntake = "商品报损出库";
int audit = iljStaffService.auditPrem(oilIntake); int audit = iljStaffService.auditPrem(oilIntake);
if (audit>0) { if (audit>0) {
// 1.查询所有的数据 // 1.查询所有的数据

View File

@ -123,7 +123,7 @@ public class MtInventoryServiceImpl implements MtInventoryService {
@Override @Override
public boolean audit(Integer id) { public boolean audit(Integer id) {
String oilIntake = "退货审核"; String oilIntake = "盘点商品审核";
int audit = iljStaffService.auditPrem(oilIntake); int audit = iljStaffService.auditPrem(oilIntake);
if (audit>0) { if (audit>0) {
// 根据id修改状态 // 根据id修改状态
@ -138,7 +138,7 @@ public class MtInventoryServiceImpl implements MtInventoryService {
@Override @Override
public boolean abolition(Integer id) { public boolean abolition(Integer id) {
String oilIntake = "退货废止"; String oilIntake = "盘点商品废止";
int audit = iljStaffService.auditPrem(oilIntake); int audit = iljStaffService.auditPrem(oilIntake);
if (audit>0) { if (audit>0) {
String status = "yzf"; String status = "yzf";
@ -154,7 +154,7 @@ public class MtInventoryServiceImpl implements MtInventoryService {
@Transactional(rollbackFor = Exception.class) @Transactional(rollbackFor = Exception.class)
public boolean storage(Integer id) { public boolean storage(Integer id) {
AccountInfo nowAccountInfo = TokenUtil.getNowAccountInfo(); AccountInfo nowAccountInfo = TokenUtil.getNowAccountInfo();
String oilIntake = "退货出"; String oilIntake = "盘点商品入";
int audit = iljStaffService.auditPrem(oilIntake); int audit = iljStaffService.auditPrem(oilIntake);
if (audit>0) { if (audit>0) {
// 1.查询所有的数据 // 1.查询所有的数据