Add receivings_quantity to item form

Conflicts:

	application/libraries/Receiving_lib.php
	database/2.3_to_2.3.1.sql
This commit is contained in:
jekkos-t520
2014-11-03 08:50:20 +01:00
parent cc9adeef47
commit 7a46078734
5 changed files with 429 additions and 364 deletions

View File

@@ -142,8 +142,9 @@ CREATE TABLE `ospos_items` (
`description` varchar(255) NOT NULL,
`cost_price` decimal(15,2) NOT NULL,
`unit_price` decimal(15,2) NOT NULL,
`quantity` decimal(15,2) NOT NULL DEFAULT '0.00',
`reorder_level` decimal(15,2) NOT NULL DEFAULT '0.00',
`quantity` decimal(15,2) NOT NULL DEFAULT '0',
`reorder_level` decimal(15,2) NOT NULL DEFAULT '0',
`receivings_quantity` int(11) NOT NULL DEFAULT '0',
`item_id` int(10) NOT NULL AUTO_INCREMENT,
`allow_alt_description` tinyint(1) NOT NULL,
`is_serialized` tinyint(1) NOT NULL,