Feat(SQL): Location Get Many and Calc Stored Procedures created with logic using Location Link table.

This commit is contained in:
2025-07-15 15:07:40 +01:00
parent 7573f329e9
commit a3fd8b12fe
44 changed files with 2590 additions and 873 deletions

View File

@@ -98,4 +98,13 @@ export default class API {
return await API.request(hashSaveDogDogCommandLink, 'POST', dataRequest);
}
// Locations
static async saveLocations(locations, formFilters, comment) {
let dataRequest = {};
dataRequest[flagFormFilters] = DOM.convertForm2JSON(formFilters);
dataRequest[flagLocation] = locations;
dataRequest[flagComment] = comment;
return await API.request(hashSaveDogLocation, 'POST', dataRequest);
}
}