feat: refs #8127 entry_getCommission #3128

Merged
robert merged 5 commits from 8127-entry_updateComission into dev 2024-11-18 08:48:51 +00:00
1 changed files with 3 additions and 6 deletions
Showing only changes of commit c5f1b05671 - Show all commits

View File

@ -25,18 +25,17 @@ BEGIN
LIMIT 1;
RETURN IFNULL(vCommission, 0);
ELSE
SELECT e.id INTO vLastEntryFk
FROM vn.entry e
JOIN vn.travel tr ON tr.id = e.travelFk
FROM `entry` e
JOIN travel tr ON tr.id = e.travelFk
WHERE e.supplierFk = vSupplierFk
ORDER BY tr.landed DESC
LIMIT 1;
IF vLastEntryFk THEN
SELECT commission INTO vCurrentCommission
FROM vn.entry
FROM `entry`
WHERE id = vLastEntryFk;
ELSE
@ -47,8 +46,6 @@ BEGIN
END IF;
RETURN vCurrentCommission;
END IF;
END$$
DELIMITER ;