Add import key on third party table

This commit is contained in:
Laurent Destailleur 2009-05-05 01:09:31 +00:00
parent aa967dc3e0
commit 93444309dd
4 changed files with 11 additions and 4 deletions

View File

@ -83,6 +83,9 @@ function dol_print_object_info($object)
global $langs;
$langs->load("other");
if (isset($object->import_key))
print $langs->trans("ImportedWithSet")." : " . $object->import_key . '<br>';
if (isset($object->user_creation) && $object->user_creation->fullname)
print $langs->trans("CreatedBy")." : " . $object->user_creation->fullname . '<br>';

View File

@ -7,10 +7,13 @@
--
-- Usage of llx_menu_const and llx_menu_constraint is too complicated
-- We remove it
-- so we made first change to remove it
alter table llx_menu_const drop foreign key fk_menu_const_fk_menu;
alter table llx_societe add column import_key varchar(14);
-- Multi company
ALTER TABLE llx_rights_def ADD COLUMN entity integer DEFAULT 1 NOT NULL AFTER module;
ALTER TABLE llx_events ADD COLUMN entity integer DEFAULT 1 NOT NULL AFTER type;

View File

@ -53,7 +53,7 @@ create table llx_product
pmp double(24,8) default 0 NOT NULL,
canvas varchar(15) DEFAULT '',
finished tinyint DEFAULT NULL,
import_key varchar(14)
import_key varchar(14) -- import key
)type=innodb;
--

View File

@ -70,9 +70,10 @@ create table llx_societe
remise_client real DEFAULT 0, -- remise systématique pour le client
mode_reglement tinyint, -- mode de réglement
cond_reglement tinyint, -- condition de réglement
tva_assuj tinyint DEFAULT 1, -- assujeti ou non à la TVA
tva_assuj tinyint DEFAULT 1, -- assujeti ou non à la TVA
gencod varchar(255), -- barcode
price_level tinyint(4) NULL -- level of price for multiprices
price_level tinyint(4) NULL, -- level of price for multiprices
import_key varchar(14) -- import key
)type=innodb;
--