Merge branch 'develop'
This commit is contained in:
commit
da6003d19d
1 changed files with 2 additions and 1 deletions
|
|
@ -194,6 +194,7 @@ export class QuotationController extends Controller {
|
||||||
@Query() urgentFirst?: boolean,
|
@Query() urgentFirst?: boolean,
|
||||||
@Query() includeRegisteredBranch?: boolean,
|
@Query() includeRegisteredBranch?: boolean,
|
||||||
@Query() hasCancel?: boolean,
|
@Query() hasCancel?: boolean,
|
||||||
|
@Query() forDebitNote?: boolean,
|
||||||
@Query() code?: string,
|
@Query() code?: string,
|
||||||
@Query() query = "",
|
@Query() query = "",
|
||||||
) {
|
) {
|
||||||
|
|
@ -218,7 +219,7 @@ export class QuotationController extends Controller {
|
||||||
code,
|
code,
|
||||||
payCondition,
|
payCondition,
|
||||||
registeredBranch: isSystem(req.user) ? undefined : { OR: permissionCond(req.user) },
|
registeredBranch: isSystem(req.user) ? undefined : { OR: permissionCond(req.user) },
|
||||||
quotationStatus: status,
|
quotationStatus: forDebitNote ? { notIn: ["Issued", "Expired"] } : status,
|
||||||
requestData: hasCancel
|
requestData: hasCancel
|
||||||
? {
|
? {
|
||||||
some: {
|
some: {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue