Feat(SQL, UI): Button Icons page, Command Button Links page created with get and set functionality.

This commit is contained in:
2025-07-17 18:58:06 +01:00
parent e0805ec2ed
commit 4e214c3bde
151 changed files with 12224 additions and 463 deletions

View File

@@ -44,7 +44,7 @@ BEGIN
CREATE TEMPORARY TABLE IF NOT EXISTS tmp_Msg_Error_Calc_Location (
id_error INT NOT NULL PRIMARY KEY AUTO_INCREMENT
, id_type INT NULL
, code VARCHAR(100) NOT NULL
, code VARCHAR(250) NOT NULL
, msg TEXT NOT NULL
);
@@ -133,6 +133,7 @@ BEGIN
CREATE TEMPORARY TABLE tmp_Location_Calc_Location (
id_location INT NOT NULL
, id_location_parent INT
, does_meet_id_filters BIT NOT NULL
, does_meet_non_id_filters BIT NOT NULL
, csv_id_locations_parent TEXT
@@ -151,7 +152,7 @@ BEGIN
CREATE TEMPORARY TABLE IF NOT EXISTS tmp_Msg_Error_Calc_Location (
id_error INT NOT NULL PRIMARY KEY AUTO_INCREMENT
, id_type INT NULL
, code VARCHAR(100) NOT NULL
, code VARCHAR(250) NOT NULL
, msg TEXT NOT NULL
);
@@ -317,6 +318,7 @@ BEGIN
END IF;
INSERT INTO tmp_Location_Calc_Location (
id_location
, id_location_parent
, does_meet_id_filters
, does_meet_non_id_filters
)
@@ -356,6 +358,7 @@ BEGIN
)
SELECT
LOCATIONS.id_location
, LOCATIONS.id_location_parent
, CASE WHEN
v_has_filter_location_id = 0
OR IFNULL(LOCATIONS_FILTERS.does_meet_id_filter, 0) = 1
@@ -555,6 +558,7 @@ BEGIN
INSERT INTO parts.DOG_Location_Temp (
guid
, id_location
, id_location_parent
, code
, name
, active
@@ -567,6 +571,7 @@ BEGIN
SELECT
a_guid
, t_LOCATIONS.id_location
, t_LOCATIONS.id_location_parent
, LOCATIONS.code
, LOCATIONS.name
, LOCATIONS.active
@@ -619,7 +624,7 @@ DELIMITER ;
CALL parts.p_dog_calc_location (
'slops ' -- a_guid
'grops ' -- a_guid
, 1 -- 'auth0|6582b95c895d09a70ba10fef', -- a_id_user
, 1 -- a_get_all_location
, 0 -- a_get_inactive_location
@@ -634,7 +639,7 @@ CALL parts.p_dog_calc_location (
);
CALL parts.p_dog_calc_location (
'slops ' -- a_guid
'grops ' -- a_guid
, 1 -- 'auth0|6582b95c895d09a70ba10fef', -- a_id_user
, 1 -- a_get_all_location
, 0 -- a_get_inactive_location
@@ -659,7 +664,7 @@ WHERE
;
*/
CALL parts.p_dog_clear_calc_location (
'slips ' -- a_guid
'grops ' -- a_guid
, 1 -- debug
);