refs #7191 check isBooked in entry_BeforeUpdate
gitea/salix/pipeline/pr-dev There was a failure building this commit
Details
gitea/salix/pipeline/pr-dev There was a failure building this commit
Details
This commit is contained in:
parent
08ca1a302b
commit
7e488ee601
|
@ -6,11 +6,20 @@ BEGIN
|
||||||
DECLARE vIsVirtual BOOL;
|
DECLARE vIsVirtual BOOL;
|
||||||
DECLARE vPrintedCount INT;
|
DECLARE vPrintedCount INT;
|
||||||
DECLARE vHasDistinctWarehouses BOOL;
|
DECLARE vHasDistinctWarehouses BOOL;
|
||||||
|
DECLARE vEntryFkCount INT;
|
||||||
|
|
||||||
IF NEW.isBooked = OLD.isBooked THEN
|
IF NEW.isBooked = OLD.isBooked THEN
|
||||||
CALL entry_checkBooked(OLD.id);
|
CALL entry_checkBooked(OLD.id);
|
||||||
END IF;
|
END IF;
|
||||||
|
|
||||||
|
IF NEW.isBooked = 1 THEN
|
||||||
|
SELECT COUNT(*) INTO vEntryFkCount
|
||||||
|
FROM buy WHERE entryFk = NEW.id;
|
||||||
|
IF vEntryFkCount = 0 THEN
|
||||||
|
CALL util.throw('The entry cannot be marked as booked if it does not have lines');
|
||||||
|
END IF;
|
||||||
|
END IF;
|
||||||
|
|
||||||
SET NEW.editorFk = account.myUser_getId();
|
SET NEW.editorFk = account.myUser_getId();
|
||||||
|
|
||||||
IF NOT (NEW.travelFk <=> OLD.travelFk) THEN
|
IF NOT (NEW.travelFk <=> OLD.travelFk) THEN
|
||||||
|
|
Loading…
Reference in New Issue