Subversion Repositories eFlore/Applications.moissonnage

Compare Revisions

Ignore whitespace Rev 29 → Rev 30

/trunk/scripts/modules/maillage_projet/sources/baznat.ini
1,5 → 1,5
[champs]
 
tbl.champ_longitude = 'longitude'
tbl.champ_latitude = 'latitude'
tbl.champ_id = 'guid'
tbl.champ_longitude = "longitude"
tbl.champ_latitude = "latitude"
tbl.champ_id = "guid"
/trunk/scripts/modules/maillage_projet/sources/sophy.ini
1,5 → 1,5
[champs]
 
tbl.champ_longitude = 'lieu_station_longitude'
tbl.champ_latitude = 'lieu_station_latitude'
tbl.champ_id = 'guid'
tbl.champ_longitude = "lieu_station_longitude"
tbl.champ_latitude = "lieu_station_latitude"
tbl.champ_id = "guid"
/trunk/scripts/modules/maillage_projet/MaillageProjet.php
177,7 → 177,7
$aInserer = $this->mailles->formaterPourInsertionBdd();
$champsTable = Config::get('champs_table_mailles');
$tableInsertion = 'mailles_'.$this->nomSource;
$ordresInsertion = [];
$ordresInsertion = array();
$this->getBdd()->requeter("DELETE FROM {$tableInsertion} WHERE zoom={$aInserer[0]['zoom']}");
foreach ($aInserer as $ligne) {
$codeMaille = $this->nomSource.'.'.$ligne['zoom'].'-'.$ligne['indexLat'].'-'.$ligne['indexLng'];