Insure that the receiving_quantity is not zero

This commit is contained in:
Steve Ireland
2018-05-29 19:45:14 -04:00
parent fae7702719
commit 4d41ad5735

View File

@@ -19,3 +19,8 @@ INSERT INTO `ospos_app_config` (`key`, `value`) VALUES
INSERT INTO `ospos_app_config` (`key`, `value`) VALUES
('print_delay_autoreturn', '0');
-- Insure that the receiving quantity is not zero
UPDATE ospos_receivings_items SET receiving_quantity = 1 WHERE receiving_quantity = 0;