Changeset 71607 in spip-zone for _plugins_/factures/trunk/base
- Timestamp:
- Apr 5, 2013, 12:11:42 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/factures/trunk/base/factures.php
r71568 r71607 25 25 26 26 $interfaces['table_des_tables']['factures'] = 'factures'; 27 $interfaces['table_des_tables'][' lignes_factures'] = 'lignes_factures';27 $interfaces['table_des_tables']['factures_lignes'] = 'factures_lignes'; 28 28 29 29 return $interfaces; … … 76 76 ); 77 77 78 $tables['spip_ lignes_factures'] = array(79 'type' => ' ligne',78 $tables['spip_factures_lignes'] = array( 79 'type' => 'factures_ligne', 80 80 'principale' => "oui", 81 'table_objet_surnoms' => array(' lignesfacture'), // table_objet('ligne') => 'lignes_factures'81 'table_objet_surnoms' => array('facturesligne'), // table_objet('factures_ligne') => 'factures_lignes' 82 82 'field'=> array( 83 "id_ ligne"=> "bigint(21) NOT NULL",83 "id_factures_ligne" => "bigint(21) NOT NULL", 84 84 "id_facture" => "int(11) NOT NULL DEFAULT '0'", 85 85 "position" => "int(11) DEFAULT NULL", … … 92 92 ), 93 93 'key' => array( 94 "PRIMARY KEY" => "id_ ligne",94 "PRIMARY KEY" => "id_factures_ligne", 95 95 ), 96 96 'titre' => "designation AS titre, '' AS lang",
Note: See TracChangeset
for help on using the changeset viewer.