fix: refs #8124 workCenter por workCenterFk
gitea/salix/pipeline/pr-master This commit looks good Details

This commit is contained in:
Robert Ferrús 2024-11-26 08:33:56 +01:00
parent 1a11832281
commit 35b508d3d6
1 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ BEGIN
FROM route r
JOIN vehicle v ON v.id = r.vehicleFk
JOIN routeConfig rc
LEFT JOIN workCenterCommission wc ON wc.workCenter = r.workCenterFk
LEFT JOIN workCenterCommission wc ON wc.workCenterFk = r.workCenterFk
WHERE r.id = vSelf
AND r.workerFk
AND r.commissionWorkCenterFk;
@ -100,7 +100,7 @@ BEGIN
FROM route r
JOIN vehicle v ON v.id = r.vehicleFk
JOIN routeConfig rc
LEFT JOIN workCenterCommission wc ON wc.workCenter = r.workCenterFk
LEFT JOIN workCenterCommission wc ON wc.workCenterFk = r.workCenterFk
WHERE r.id = vSelf
AND r.kmStart
AND r.kmEnd