diff --git a/htdocs/fourn/commande/pre.inc.php b/htdocs/fourn/commande/pre.inc.php new file mode 100644 index 00000000000..7b7e86c3571 --- /dev/null +++ b/htdocs/fourn/commande/pre.inc.php @@ -0,0 +1,44 @@ + + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * + * $Id$ + * $Source$ + * + */ +require("../../main.inc.php"); + +function llxHeader($head = "", $urlp = "") +{ + global $user, $langs; + $langs->load("orders"); + /* + * + * + */ + top_menu($head); + + $menu = new Menu(); + + $menu->add(DOL_URL_ROOT."/fourn/index.php", "Fournisseurs"); + + $menu->add(DOL_URL_ROOT."/fourn/commande/", $langs->trans("Orders")); + $menu->add_submenu(DOL_URL_ROOT."/fourn/commande/liste.php", $langs->trans("Liste")); + + left_menu($menu->liste); +} + +?> diff --git a/mysql/tables/llx_contrat.key.sql b/mysql/tables/llx_contrat.key.sql new file mode 100644 index 00000000000..28b659e76cd --- /dev/null +++ b/mysql/tables/llx_contrat.key.sql @@ -0,0 +1,35 @@ +-- ============================================================================ +-- Copyright (C) 2002-2004 Rodolphe Quiedeville +-- Copyright (C) 2004 Laurent Destailleur +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +-- +-- $Id$ +-- $Source$ +-- +-- ============================================================================ + +-- +-- +ALTER TABLE llx_contrat ADD INDEX (fk_soc); +ALTER TABLE llx_contrat ADD INDEX (fk_commercial_signature); +ALTER TABLE llx_contrat ADD INDEX (fk_commercial_suivi); +ALTER TABLE llx_contrat ADD INDEX (fk_user_author); +-- +-- +ALTER TABLE llx_contrat ADD FOREIGN KEY (fk_soc) REFERENCES llx_societe (idp); +ALTER TABLE llx_contrat ADD FOREIGN KEY (fk_commercial_signature) REFERENCES llx_user (rowid); +ALTER TABLE llx_contrat ADD FOREIGN KEY (fk_commercial_suivi) REFERENCES llx_user (rowid); +ALTER TABLE llx_contrat ADD FOREIGN KEY (fk_user_author) REFERENCES llx_user (rowid); diff --git a/mysql/tables/llx_facture.key.sql b/mysql/tables/llx_facture.key.sql new file mode 100644 index 00000000000..05ee11aa914 --- /dev/null +++ b/mysql/tables/llx_facture.key.sql @@ -0,0 +1,35 @@ +-- ============================================================================ +-- Copyright (C) 2002-2004 Rodolphe Quiedeville +-- Copyright (C) 2004 Laurent Destailleur +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +-- +-- $Id$ +-- $Source$ +-- +-- ============================================================================ + +-- +-- +ALTER TABLE llx_facture ADD INDEX (fk_soc); + +ALTER TABLE llx_facture ADD INDEX (fk_user_author); +ALTER TABLE llx_facture ADD INDEX (fk_user_valid); +-- +-- +ALTER TABLE llx_facture ADD FOREIGN KEY (fk_soc) REFERENCES llx_societe (idp); + +ALTER TABLE llx_facture ADD FOREIGN KEY (fk_user_author) REFERENCES llx_user (rowid); +ALTER TABLE llx_facture ADD FOREIGN KEY (fk_user_valid) REFERENCES llx_user (rowid);