Merge branch 'develop' into dev
All checks were successful
Build & Deploy on Dev / build (push) Successful in 54s

This commit is contained in:
harid 2026-02-19 14:48:23 +07:00
commit 91d65e9b9f
2 changed files with 6 additions and 3 deletions

View file

@ -2096,7 +2096,8 @@ export class DevelopmentController extends Controller {
_data.child1 != undefined && _data.child1 != null _data.child1 != undefined && _data.child1 != null
? _data.child1[0] != null ? _data.child1[0] != null
? `development.child1DnaId IN (:...child1)` ? `development.child1DnaId IN (:...child1)`
: `development.child1DnaId is ${_data.privilege == "PARENT" ? "not null" : "null"}` // : `development.child1DnaId is ${_data.privilege == "PARENT" ? "not null" : "null"}`
: `development.child1DnaId is null`
: "1=1", : "1=1",
{ {
child1: _data.child1, child1: _data.child1,

View file

@ -96,8 +96,10 @@ class CheckAuth {
}; };
} else if (privilege == "PARENT") { } else if (privilege == "PARENT") {
data = { data = {
root: [x.orgRootId], // root: [x.orgRootId],
child1: [null], // child1: [null],
root: null,
child1: null,
child2: null, child2: null,
child3: null, child3: null,
child4: null, child4: null,