|
@@ -770,6 +770,12 @@ export default {
|
|
|
const b = vaildActive.filter(item => item.type == 0) // 文字提示,可跳过继续提交
|
|
|
const d = vaildActive.filter(item => item.type == 'price_less_cost' || item.type == 'wait_up_audit_price_less_cost') // 价格校验表格提示,可跳过继续提交
|
|
|
const e = vaildActive.filter(item => item.type == 'allBorrowProductFlag') // 只有累计产品
|
|
|
+ // 上级审核不校验规则
|
|
|
+ if (this.isSupAudit) {
|
|
|
+ // 售价是否低于参考成本价
|
|
|
+ _this.validPriceLessCost(d, isBatch)
|
|
|
+ return
|
|
|
+ }
|
|
|
// 弹出不符合规则弹框,不可提交
|
|
|
if (a.length) {
|
|
|
this.$info({
|