Merge pull request 'feat: refs #8075 itemShelving' (!3081) from 8075-itemShelvingMoving into dev
gitea/salix/pipeline/head There was a failure building this commit Details

Reviewed-on: #3081
Reviewed-by: Javi Gallego <jgallego@verdnatura.es>
This commit is contained in:
Pako Natek 2024-10-08 05:48:05 +00:00
commit c7269e77a6
2 changed files with 4 additions and 1 deletions

View File

@ -10,7 +10,7 @@ BEGIN
END IF; END IF;
IF NEW.shelvingFk <> OLD.shelvingFk THEN IF NEW.shelvingFk <> OLD.shelvingFk THEN
SET NEW.isMoving = FALSE; SET NEW.movingState = NULL;
END IF; END IF;
END$$ END$$
DELIMITER ; DELIMITER ;

View File

@ -0,0 +1,3 @@
-- Place your SQL code here
ALTER TABLE vn.itemShelving DROP COLUMN IF EXISTS isMoving;
ALTER TABLE vn.itemShelving ADD IF NOT EXISTS movingState ENUM('selected','printed') NULL;