Formattazione codice
This commit is contained in:
parent
eed67da504
commit
09fe13d5d9
|
@ -496,7 +496,7 @@ if ($structure->permission == 'rw') {
|
|||
foreach ($customs as $custom) {
|
||||
if (post($custom['name']) !== null) {
|
||||
$values[$custom['id']] = post($custom['name']);
|
||||
}else{
|
||||
} else {
|
||||
$values[$custom['id']] = '';
|
||||
}
|
||||
}
|
||||
|
|
|
@ -615,15 +615,15 @@ switch (post('op')) {
|
|||
$intervento->num_item = $documento->num_item;
|
||||
$intervento->idreferente = $documento->idreferente;
|
||||
$intervento->idagente = $documento->idagente;
|
||||
|
||||
|
||||
if ($class == 'Modules\Preventivi\Preventivo') {
|
||||
$intervento->id_preventivo = $documento->id;
|
||||
$intervento->richiesta = "Attività creata da preventivo num. ".$documento->numero."<br>".$documento->nome;
|
||||
}
|
||||
$intervento->richiesta = 'Attività creata da preventivo num. '.$documento->numero.'<br>'.$documento->nome;
|
||||
}
|
||||
if ($class == 'Modules\Ordini\Ordine') {
|
||||
$intervento->id_ordine = $documento->id;
|
||||
$intervento->richiesta = "Attività creata da ordine num. ".$documento->numero_esterno;
|
||||
}
|
||||
$intervento->richiesta = 'Attività creata da ordine num. '.$documento->numero_esterno;
|
||||
}
|
||||
|
||||
$intervento->save();
|
||||
|
||||
|
|
|
@ -435,7 +435,7 @@ echo '
|
|||
<tr>
|
||||
<td colspan="'.$colspan.'" class="text-right">
|
||||
'.tr('Ricarico (_PRC_)', [
|
||||
'_PRC_' => ($preventivo->ricarico_percentuale != 0 ? numberFormat($preventivo->ricarico_percentuale). '%' : 'N.D.'),
|
||||
'_PRC_' => ($preventivo->ricarico_percentuale != 0 ? numberFormat($preventivo->ricarico_percentuale).'%' : 'N.D.'),
|
||||
]).':
|
||||
</td>
|
||||
</tr>';
|
||||
|
|
|
@ -42,5 +42,5 @@ return [
|
|||
'id_anagrafica' => $r['idanagrafica'],
|
||||
'revisione' => $revisione,
|
||||
'nome_referente' => $r['nome_referente'],
|
||||
'nome_preventivo' => $r['nome_preventivo']
|
||||
'nome_preventivo' => $r['nome_preventivo'],
|
||||
];
|
||||
|
|
|
@ -1778,7 +1778,7 @@ class FatturaElettronica
|
|||
{
|
||||
$documento = $fattura->getDocumento();
|
||||
$rappresentante_fiscale = null;
|
||||
|
||||
|
||||
//Fattura per conto terzi, il cliente diventa il cedente al posto della mia Azienda (fornitore)
|
||||
if ($documento['is_fattura_conto_terzi']) {
|
||||
$azienda = $fattura->getCliente();
|
||||
|
|
|
@ -65,7 +65,7 @@ switch ($operazione) {
|
|||
} else {
|
||||
flash()->warning(tr('Errore durante aggiunta della sede'));
|
||||
}
|
||||
|
||||
|
||||
$sede = Sede::find($id_record);
|
||||
$sede->save();
|
||||
|
||||
|
|
|
@ -308,7 +308,7 @@ abstract class Article extends Accounting
|
|||
->groupBy('idarticolo')
|
||||
->sum('qta');
|
||||
|
||||
$qta_modifica = $this->attributes['qta']-$this->original['qta'];
|
||||
$qta_modifica = $this->attributes['qta'] - $this->original['qta'];
|
||||
|
||||
//Se la quantità supera la giacenza in sede allora movimento solo quello che resta
|
||||
if (($qta_sede + $qta_finale) < 0 && $qta_sede >= 0) {
|
||||
|
@ -334,7 +334,6 @@ abstract class Article extends Accounting
|
|||
'reference_id' => $documento->id,
|
||||
'idsede' => $id_sede,
|
||||
]);
|
||||
|
||||
}
|
||||
|
||||
protected static function boot()
|
||||
|
|
|
@ -168,8 +168,6 @@ class HTMLBuilder
|
|||
$result = self::replace($result, $depth + 1);
|
||||
}
|
||||
|
||||
|
||||
|
||||
$html = str_replace($value, !empty($result) ? $result : $value, $html);
|
||||
}
|
||||
|
||||
|
@ -334,6 +332,26 @@ class HTMLBuilder
|
|||
self::$record = $record;
|
||||
}
|
||||
|
||||
/**
|
||||
* Decodifica i tag personalizzati e li converte in un array basato sul formato JSON.
|
||||
*
|
||||
* @param string $string
|
||||
* @param string $type
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public static function decode($string, $type)
|
||||
{
|
||||
$string = '{'.substr($string, strlen(self::$open[$type]), -strlen(self::$close[$type])).'}';
|
||||
|
||||
// Fix per contenuti con newline integrati
|
||||
$string = str_replace(["\n", "\r"], ['\\n', '\\r'], $string);
|
||||
|
||||
$json = (array) json_decode($string, true);
|
||||
|
||||
return $json;
|
||||
}
|
||||
|
||||
/**
|
||||
* Genera il codice HTML per i singoli tag di input.
|
||||
*
|
||||
|
@ -368,26 +386,6 @@ class HTMLBuilder
|
|||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* Decodifica i tag personalizzati e li converte in un array basato sul formato JSON.
|
||||
*
|
||||
* @param string $string
|
||||
* @param string $type
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public static function decode($string, $type)
|
||||
{
|
||||
$string = '{'.substr($string, strlen(self::$open[$type]), -strlen(self::$close[$type])).'}';
|
||||
|
||||
// Fix per contenuti con newline integrati
|
||||
$string = str_replace(["\n", "\r"], ['\\n', '\\r'], $string);
|
||||
|
||||
$json = (array) json_decode($string, true);
|
||||
|
||||
return $json;
|
||||
}
|
||||
|
||||
/**
|
||||
* Elabora l'array contenente le impostazioni del tag per renderlo fruibile alla conversione in HTML (per i tag di input).
|
||||
*
|
||||
|
|
|
@ -206,7 +206,7 @@ class SelectHandler implements HandlerInterface
|
|||
}
|
||||
}
|
||||
|
||||
$element['text'] = ($element['text'] == "" || $element['text'] == null ) ? $element['descrizione'] : $element['text'];
|
||||
$element['text'] = ($element['text'] == '' || $element['text'] == null) ? $element['descrizione'] : $element['text'];
|
||||
|
||||
if ($link == 'stampa') {
|
||||
$element['title'] = ' ';
|
||||
|
|
|
@ -83,9 +83,9 @@ class FieldManager implements ManagerInterface
|
|||
$field['value'] = isset($field['value']) ? $field['value'] : '';
|
||||
|
||||
//Gestione valori multipli
|
||||
$values = json_decode((string)$field['value'],true);
|
||||
if( is_array($values) ){
|
||||
$field['value'] = implode(",",$values);
|
||||
$values = json_decode((string) $field['value'], true);
|
||||
if (is_array($values)) {
|
||||
$field['value'] = implode(',', $values);
|
||||
}
|
||||
|
||||
$replace = [
|
||||
|
|
|
@ -22,9 +22,9 @@ include_once __DIR__.'/../../core.php';
|
|||
use Modules\Contratti\Contratto;
|
||||
|
||||
$documento = Contratto::find($id_record);
|
||||
$d_qta = (integer)setting('Cifre decimali per quantità in stampa');
|
||||
$d_importi = (integer)setting('Cifre decimali per importi in stampa');
|
||||
$d_totali = (integer)setting('Cifre decimali per totali in stampa');
|
||||
$d_qta = (int) setting('Cifre decimali per quantità in stampa');
|
||||
$d_importi = (int) setting('Cifre decimali per importi in stampa');
|
||||
$d_totali = (int) setting('Cifre decimali per totali in stampa');
|
||||
|
||||
$id_cliente = $documento['idanagrafica'];
|
||||
|
||||
|
|
|
@ -22,9 +22,9 @@ include_once __DIR__.'/../../core.php';
|
|||
use Modules\DDT\DDT;
|
||||
|
||||
$documento = DDT::find($id_record);
|
||||
$d_qta = (integer)setting('Cifre decimali per quantità in stampa');
|
||||
$d_importi = (integer)setting('Cifre decimali per importi in stampa');
|
||||
$d_totali = (integer)setting('Cifre decimali per totali in stampa');
|
||||
$d_qta = (int) setting('Cifre decimali per quantità in stampa');
|
||||
$d_importi = (int) setting('Cifre decimali per importi in stampa');
|
||||
$d_totali = (int) setting('Cifre decimali per totali in stampa');
|
||||
|
||||
$id_cliente = $documento['idanagrafica'];
|
||||
$id_sede = $record['idsede_partenza'];
|
||||
|
|
|
@ -23,9 +23,9 @@ use Modules\Fatture\Fattura;
|
|||
|
||||
$documento = Fattura::find($id_record);
|
||||
$banca = $documento->getBanca();
|
||||
$d_qta = (integer)setting('Cifre decimali per quantità in stampa');
|
||||
$d_importi = (integer)setting('Cifre decimali per importi in stampa');
|
||||
$d_totali = (integer)setting('Cifre decimali per totali in stampa');
|
||||
$d_qta = (int) setting('Cifre decimali per quantità in stampa');
|
||||
$d_importi = (int) setting('Cifre decimali per importi in stampa');
|
||||
$d_totali = (int) setting('Cifre decimali per totali in stampa');
|
||||
|
||||
// Lettura info fattura
|
||||
$record = $dbo->fetchOne('SELECT *,
|
||||
|
|
|
@ -21,9 +21,9 @@ use Carbon\Carbon;
|
|||
|
||||
include_once __DIR__.'/../../core.php';
|
||||
|
||||
$d_qta = (integer)setting('Cifre decimali per quantità in stampa');
|
||||
$d_importi = (integer)setting('Cifre decimali per importi in stampa');
|
||||
$d_totali = (integer)setting('Cifre decimali per totali in stampa');
|
||||
$d_qta = (int) setting('Cifre decimali per quantità in stampa');
|
||||
$d_importi = (int) setting('Cifre decimali per importi in stampa');
|
||||
$d_totali = (int) setting('Cifre decimali per totali in stampa');
|
||||
|
||||
/*
|
||||
Dati intervento
|
||||
|
|
|
@ -22,9 +22,9 @@ include_once __DIR__.'/../../core.php';
|
|||
use Modules\Ordini\Ordine;
|
||||
|
||||
$documento = Ordine::find($id_record);
|
||||
$d_qta = (integer)setting('Cifre decimali per quantità in stampa');
|
||||
$d_importi = (integer)setting('Cifre decimali per importi in stampa');
|
||||
$d_totali = (integer)setting('Cifre decimali per totali in stampa');
|
||||
$d_qta = (int) setting('Cifre decimali per quantità in stampa');
|
||||
$d_importi = (int) setting('Cifre decimali per importi in stampa');
|
||||
$d_totali = (int) setting('Cifre decimali per totali in stampa');
|
||||
|
||||
$id_cliente = $documento['idanagrafica'];
|
||||
|
||||
|
|
|
@ -23,9 +23,9 @@ use Modules\Ordini\Ordine;
|
|||
|
||||
$documento = Ordine::find($id_record);
|
||||
$records = $documento->interventi;
|
||||
$d_qta = (integer)setting('Cifre decimali per quantità in stampa');
|
||||
$d_importi = (integer)setting('Cifre decimali per importi in stampa');
|
||||
$d_totali = (integer)setting('Cifre decimali per totali in stampa');
|
||||
$d_qta = (int) setting('Cifre decimali per quantità in stampa');
|
||||
$d_importi = (int) setting('Cifre decimali per importi in stampa');
|
||||
$d_totali = (int) setting('Cifre decimali per totali in stampa');
|
||||
|
||||
$id_cliente = $documento['idanagrafica'];
|
||||
$id_sede = $documento['idsede'];
|
||||
|
|
|
@ -22,9 +22,9 @@ include_once __DIR__.'/../../core.php';
|
|||
use Modules\Preventivi\Preventivo;
|
||||
|
||||
$documento = Preventivo::find($id_record);
|
||||
$d_qta = (integer)setting('Cifre decimali per quantità in stampa');
|
||||
$d_importi = (integer)setting('Cifre decimali per importi in stampa');
|
||||
$d_totali = (integer)setting('Cifre decimali per totali in stampa');
|
||||
$d_qta = (int) setting('Cifre decimali per quantità in stampa');
|
||||
$d_importi = (int) setting('Cifre decimali per importi in stampa');
|
||||
$d_totali = (int) setting('Cifre decimali per totali in stampa');
|
||||
|
||||
$id_cliente = $documento['idanagrafica'];
|
||||
|
||||
|
|
|
@ -23,9 +23,9 @@ $budget = get_imponibile_preventivo($id_record);
|
|||
$somma_totale_imponibile = get_totale_interventi_preventivo($id_record);
|
||||
$rapporto = floatval($budget) - floatval($somma_totale_imponibile) - $documento->provvigione;
|
||||
|
||||
$d_qta = (integer)setting('Cifre decimali per quantità in stampa');
|
||||
$d_totali = (integer)setting('Cifre decimali per importi in stampa');
|
||||
$d_totali = (integer)setting('Cifre decimali per totali in stampa');
|
||||
$d_qta = (int) setting('Cifre decimali per quantità in stampa');
|
||||
$d_totali = (int) setting('Cifre decimali per importi in stampa');
|
||||
$d_totali = (int) setting('Cifre decimali per totali in stampa');
|
||||
|
||||
if ($pricing && empty($options['dir'])) {
|
||||
// Totale imponibile
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
include_once __DIR__.'/../../core.php';
|
||||
|
||||
$d_totali = (integer)setting('Cifre decimali per totali in stampa');
|
||||
$d_totali = (int) setting('Cifre decimali per totali in stampa');
|
||||
|
||||
$somma_ore = sum($somma_ore);
|
||||
$somma_imponibile = sum($somma_imponibile);
|
||||
|
|
|
@ -22,8 +22,8 @@ include_once __DIR__.'/../../core.php';
|
|||
use Modules\Interventi\Intervento;
|
||||
use Modules\Iva\Aliquota;
|
||||
|
||||
$d_qta = (integer)setting('Cifre decimali per quantità in stampa');
|
||||
$d_importi = (integer)setting('Cifre decimali per importi in stampa');
|
||||
$d_qta = (int) setting('Cifre decimali per quantità in stampa');
|
||||
$d_importi = (int) setting('Cifre decimali per importi in stampa');
|
||||
|
||||
$intervento = Intervento::find($record['id']);
|
||||
$sessioni = $intervento->sessioni;
|
||||
|
|
Loading…
Reference in New Issue