La copia di cortesia di una fattura verso un privato ha valenza fiscale
This commit is contained in:
parent
842bf407ba
commit
b575ffe361
|
@ -36,7 +36,8 @@ $record = $dbo->fetchOne('SELECT *,
|
|||
(SELECT descrizione FROM dt_spedizione WHERE id=idspedizione) AS spedizione,
|
||||
(SELECT ragione_sociale FROM an_anagrafiche WHERE idanagrafica=idvettore) AS vettore,
|
||||
(SELECT id FROM co_banche WHERE id = id_banca_azienda) AS id_banca,
|
||||
(SELECT is_fiscale FROM zz_segments WHERE id = id_segment) AS is_fiscale
|
||||
(SELECT is_fiscale FROM zz_segments WHERE id = id_segment) AS is_fiscale,
|
||||
(SELECT tipo FROM an_anagrafiche WHERE idanagrafica=co_documenti.idanagrafica) AS tipo_cliente
|
||||
FROM co_documenti WHERE id='.prepare($id_record));
|
||||
|
||||
$record['rivalsainps'] = floatval($record['rivalsainps']);
|
||||
|
@ -50,6 +51,7 @@ $bic_banca = $banca->bic;
|
|||
$module_name = ($record['dir'] == 'entrata') ? 'Fatture di vendita' : 'Fatture di acquisto';
|
||||
|
||||
$id_cliente = $record['idanagrafica'];
|
||||
$tipo_cliente = $record['tipo_cliente'];
|
||||
$id_sede = $record['idsede_destinazione'];
|
||||
|
||||
$tipo_doc = $record['tipo_doc'];
|
||||
|
|
|
@ -151,7 +151,7 @@ $replaces = array_merge($replaces, [
|
|||
'base_link()' => base_path(),
|
||||
'directory' => Prints::get($id_print)['full_directory'],
|
||||
'footer' => !empty($footer) ? $footer : '',
|
||||
'dicitura_fissa_fattura' => setting('Dicitura fissa fattura').((setting('Regime Fiscale') != 'RF02' && setting('Regime Fiscale') != 'RF19' && setting('Regime Fiscale') != 'RF18') ? tr('Documento privo di valenza fiscale (art 21 dpr 633/72).') : ''),
|
||||
'dicitura_fissa_fattura' => setting('Dicitura fissa fattura').((setting('Regime Fiscale') != 'RF02' && setting('Regime Fiscale') != 'RF19' && setting('Regime Fiscale') != 'RF18' && $tipo_cliente != 'Privato') ? tr('Documento privo di valenza fiscale (art 21 dpr 633/72).') : ''),
|
||||
]);
|
||||
|
||||
unset($replace);
|
||||
|
|
Loading…
Reference in New Issue