fix(monitor_ticket): add isTooLittle problem
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
This commit is contained in:
parent
b3f0133ece
commit
7c7c64415d
|
@ -304,7 +304,8 @@ module.exports = Self => {
|
|||
{'tp.hasTicketRequest': true},
|
||||
{'tp.hasComponentLack': true},
|
||||
{'tp.isTaxDataChecked': false},
|
||||
{'tp.itemShortage': {neq: null}}
|
||||
{'tp.itemShortage': {neq: null}},
|
||||
{'tp.isTooLittle': true}
|
||||
]};
|
||||
} else if (hasProblems === false) {
|
||||
whereProblems = {and: [
|
||||
|
@ -313,7 +314,8 @@ module.exports = Self => {
|
|||
{'tp.hasTicketRequest': false},
|
||||
{'tp.hasComponentLack': false},
|
||||
{'tp.isTaxDataChecked': true},
|
||||
{'tp.itemShortage': null}
|
||||
{'tp.itemShortage': null},
|
||||
{'tp.isTooLittle': false}
|
||||
]};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue