From 659a9a631944b3a6eb716da587cdb4e4099661d3 Mon Sep 17 00:00:00 2001 From: bMancone Date: Mon, 7 Nov 2011 12:33:42 +0000 Subject: [PATCH] // db.sql : supplier_order_detail : there is now a quantity expected and a quantity received --- install-dev/sql/db.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install-dev/sql/db.sql b/install-dev/sql/db.sql index 14b665128..fe4a0d9a0 100644 --- a/install-dev/sql/db.sql +++ b/install-dev/sql/db.sql @@ -2092,7 +2092,8 @@ CREATE TABLE `PREFIX_supplier_order_detail` ( `id_currency` INT(11) UNSIGNED NOT NULL, `exchange_rate` DECIMAL(20,6) DEFAULT '0.000000', `unit_price_te` DECIMAL(20,6) DEFAULT '0.000000', -`quantity` INT(11) UNSIGNED NOT NULL, +`quantity_expected` INT(11) UNSIGNED NOT NULL, +`quantity_received` INT(11) UNSIGNED NOT NULL, `price_te` DECIMAL(20,6) DEFAULT '0.000000', `discount_rate` DECIMAL(20,6) DEFAULT '0.000000', `discount_value_te` DECIMAL(20,6) DEFAULT '0.000000',