openstamanager/modules/anagrafiche/import.php

141 lines
3.1 KiB
PHP
Raw Normal View History

2018-02-23 19:04:05 +01:00
<?php
include_once __DIR__.'/../../core.php';
switch (post('op')) {
case 'import':
2018-02-28 23:44:30 +01:00
2018-02-26 18:51:38 +01:00
foreach ($data as $key => $value) {
if (!empty($value)){
(array) $idtipoanagrafica = $data[$key]['tipologia'];
2018-02-27 00:43:50 +01:00
unset($data[$key]['tipologia']);
2018-02-23 19:04:05 +01:00
//update
if (post('primary_key')!=''){
$primary_key = post('primary_key');
$rs = $dbo->select('an_anagrafiche', $primary_key, [$primary_key => $data[$key][$primary_key]]);
if (!in_array($data[$key][$primary_key], $rs[0])) {
//insert
$dbo->insert('an_anagrafiche', $data[$key]);
//campi extra
if (count($idtipoanagrafica)>0){
// Aggiornamento della tipologia di anagrafiche
$dbo->sync('an_tipianagrafiche_anagrafiche', [
'idanagrafica' => $dbo->lastInsertedID(),
], [
'idtipoanagrafica' => (array) $idtipoanagrafica,
]);
}
}else{
//update
$dbo->update('an_anagrafiche', $data[$key], [$primary_key => $data[$key][$primary_key]]);
}
}
2018-02-26 18:51:38 +01:00
unset($data[$key]);
2018-02-26 18:51:38 +01:00
}
}
2018-02-23 19:04:05 +01:00
break;
2018-02-26 18:51:38 +01:00
2018-02-23 19:04:05 +01:00
}
return [
[
'field' => 'codice',
'label' => 'Codice',
'primary_key' => '1',
2018-02-23 19:04:05 +01:00
],
[
'field' => 'ragione_sociale',
'label' => 'Ragione sociale',
],
[
'field' => 'provincia',
'label' => 'Provincia',
],
[
'field' => 'citta',
'label' => 'Città',
],
[
'field' => 'telefono',
'label' => 'Telefono',
],
[
'field' => 'indirizzo',
'label' => 'Indirizzo',
],
[
'field' => 'cap',
'label' => 'CAP',
],
[
'field' => 'cellulare',
'label' => 'Cellulare',
],
[
'field' => 'fax',
'label' => 'Fax',
],
[
'field' => 'email',
'label' => 'Email',
],
[
'field' => 'codice_fiscale',
'label' => 'Codice Fiscale',
],
[
'field' => 'piva',
'label' => 'Partita IVA',
],
[
'field' => 'codiceiban',
'label' => 'IBAN',
],
[
'field' => 'note',
'label' => 'Note',
],
[
2018-02-23 19:04:05 +01:00
'field' => 'id_nazione',
'label' => 'Nazione',
'other' => 'nazione',
'query' => 'SELECT id as result FROM an_nazioni WHERE LOWER(nome) = LOWER(|value|)',
],
[
'field' => 'idagente',
'label' => 'ID Agente',
],
[
'field' => 'idpagamento_vendite',
'label' => 'ID Pagamento',
'other' => 'idpagamento',
],
[
'field' => 'tipologia',
'label' => 'Tipologia',
'other' => 'idtipo',
'query' => 'SELECT idtipoanagrafica as result FROM an_tipianagrafiche WHERE descrizione = |value|',
],
];