Fixed Installer Issue

This commit is contained in:
2026-08-08 08:05:29 +05:30
parent bc00515c1b
commit b862a3f686
20 changed files with 648 additions and 104 deletions

View File

@@ -0,0 +1,20 @@
UPDATE platform.application_query
SET query_text =
'select!C0L!SELECT control '
'FROM app_process '
'WHERE page_id=? '
'AND process_id NOT IN ('
'SELECT process_id FROM denied_process WHERE portfolio_id=? AND isdenied=1'
')'
WHERE query_id=10;
UPDATE platform.application_query
SET query_text =
'select!C0L!SELECT field_id, label, controlid, cssclass, containerid, maxlength, '
'onclick, ondbclick, onfocus, onblur, onkeypress, onkeydown, onkeyup, onchange, '
'ctrltype, ctrlwidth, ctrlheight, defaultvalue, fieldorder, fieldvalue, valorder, '
'page_id, portfolio_id, template_id, template, template_type, isvisible '
'FROM dynamic_controls '
'WHERE portfolio_id=? AND page_id=? AND template_type=? '
'ORDER BY fieldorder, field_id, valorder, label, containerid'
WHERE query_id=74;