141 lines
3.1 KiB
PHP
141 lines
3.1 KiB
PHP
<?php
|
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
switch (post('op')) {
|
|
case 'import':
|
|
|
|
foreach ($data as $key => $value) {
|
|
|
|
if (!empty($value)){
|
|
|
|
(array) $idtipoanagrafica = $data[$key]['tipologia'];
|
|
unset($data[$key]['tipologia']);
|
|
|
|
|
|
|
|
//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]]);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
unset($data[$key]);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
return [
|
|
[
|
|
'field' => 'codice',
|
|
'label' => 'Codice',
|
|
'primary_key' => '1',
|
|
],
|
|
[
|
|
'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',
|
|
],
|
|
[
|
|
'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|',
|
|
],
|
|
];
|