Aggiunto impostazione cap automatico nella FE per clienti esteri
This commit is contained in:
parent
56d02a7672
commit
4cba60f714
|
@ -43,6 +43,9 @@ Il formato utilizzato è basato sulle linee guida di [Keep a Changelog](http://k
|
|||
- Aggiunta possibilità di importare ddt di acquisto nei ddt di vendita
|
||||
- Aggiunta possibilità di creare una nota di credito da un ddt di acquisto
|
||||
|
||||
### Modificato (Changed)
|
||||
- Impostazione CAP automatico a 99999 nella FE per clienti esteri
|
||||
|
||||
## 2.4.21 (2021-01-14)
|
||||
|
||||
### Aggiunto (Added)
|
||||
|
|
|
@ -64,7 +64,7 @@ echo '
|
|||
<div class="box-body">
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
{[ "type": "text", "label": "'.tr('Partita IVA').'", "maxlength": 13, "name": "piva", "class": "text-center alphanumeric-mask", "validation": "partita_iva"]}
|
||||
{[ "type": "text", "label": "'.tr('Partita IVA').'", "maxlength": 16, "name": "piva", "class": "text-center alphanumeric-mask", "validation": "partita_iva"]}
|
||||
</div>
|
||||
|
||||
<div class="col-md-4">
|
||||
|
@ -84,7 +84,7 @@ echo '
|
|||
</div>
|
||||
|
||||
<div class="col-md-2">
|
||||
{[ "type": "text", "label": "'.tr('C.A.P.').'", "name": "cap", "maxlength": 5, "class": "text-center" ]}
|
||||
{[ "type": "text", "label": "'.tr('C.A.P.').'", "name": "cap", "maxlength": 6, "class": "text-center" ]}
|
||||
</div>
|
||||
|
||||
<div class="col-md-4">
|
||||
|
|
|
@ -87,7 +87,7 @@ if (sizeof($problemi_anagrafica) > 0) {
|
|||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
{[ "type": "text", "label": "<?php echo tr('Partita IVA'); ?>", "maxlength": 13, "name": "piva", "class": "text-center alphanumeric-mask text-uppercase", "value": "$piva$", "validation": "partita_iva" ]}
|
||||
{[ "type": "text", "label": "<?php echo tr('Partita IVA'); ?>", "maxlength": 16, "name": "piva", "class": "text-center alphanumeric-mask text-uppercase", "value": "$piva$", "validation": "partita_iva" ]}
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
|
@ -181,7 +181,7 @@ if (sizeof($problemi_anagrafica) > 0) {
|
|||
</div>
|
||||
|
||||
<div class="col-md-2">
|
||||
{[ "type": "text", "label": "<?php echo tr('C.A.P.'); ?>", "name": "cap", "maxlength": 5, "class": "text-center", "value": "$cap$" ]}
|
||||
{[ "type": "text", "label": "<?php echo tr('C.A.P.'); ?>", "name": "cap", "maxlength": 6, "class": "text-center", "value": "$cap$" ]}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
|
|
@ -705,7 +705,7 @@ class FatturaElettronica
|
|||
{
|
||||
$result = [
|
||||
'Indirizzo' => $anagrafica['indirizzo'],
|
||||
'CAP' => ($anagrafica->nazione->iso2 == 'IT') ? $anagrafica['cap'] : '00000',
|
||||
'CAP' => ($anagrafica->nazione->iso2 == 'IT') ? $anagrafica['cap'] : '99999',
|
||||
'Comune' => $anagrafica['citta'],
|
||||
];
|
||||
|
||||
|
|
|
@ -73,4 +73,7 @@ ALTER TABLE `co_preventivi` ADD `condizioni_fornitura` TEXT NOT NULL AFTER `nume
|
|||
ALTER TABLE `co_movimenti_modelli` ADD `totale` DECIMAL(12,6) NOT NULL AFTER `idconto`;
|
||||
|
||||
-- Aggiunto colonna garanzie in co_preventivi
|
||||
ALTER TABLE `co_preventivi` ADD `garanzia` TEXT NOT NULL AFTER `condizioni_fornitura`;
|
||||
ALTER TABLE `co_preventivi` ADD `garanzia` TEXT NOT NULL AFTER `condizioni_fornitura`;
|
||||
|
||||
-- Modificata lunghezza campo Partita iva
|
||||
ALTER TABLE `an_anagrafiche` CHANGE `piva` `piva` VARCHAR(16) NOT NULL;
|
Loading…
Reference in New Issue