Fix parzialie #573
This commit is contained in:
parent
3fecd55aa9
commit
cf47f69507
|
@ -35,7 +35,7 @@ echo '
|
|||
var sconto_percentuale = form.find("#sconto_percentuale");
|
||||
var sconto_unitario = form.find("#sconto_unitario");
|
||||
|
||||
var totale = '.$options['imponibile_scontato'].';
|
||||
var totale = '.($options['imponibile_scontato'] ?: 0).';
|
||||
|
||||
function aggiorna_sconto_percentuale() {
|
||||
var sconto = sconto_percentuale.val().toEnglish();
|
||||
|
|
|
@ -9,6 +9,7 @@ use Modules\Interventi\Components\Riga;
|
|||
use Modules\Interventi\Intervento;
|
||||
use Modules\Interventi\Stato;
|
||||
use Modules\Interventi\TipoSessione;
|
||||
use Modules\Interventi\Components\Sconto;
|
||||
|
||||
switch (post('op')) {
|
||||
case 'update':
|
||||
|
@ -327,9 +328,9 @@ switch (post('op')) {
|
|||
|
||||
case 'manage_sconto':
|
||||
if (post('idriga') != null) {
|
||||
$sconto = Riga::find(post('idriga'));
|
||||
$sconto = Sconto::find(post('idriga'));
|
||||
} else {
|
||||
$sconto = Riga::build($intervento);
|
||||
$sconto = Sconto::build($intervento);
|
||||
}
|
||||
|
||||
$sconto->descrizione = post('descrizione');
|
||||
|
|
|
@ -89,7 +89,7 @@ if (count($rs2) > 0) {
|
|||
// Pulsante per riportare nel magazzino centrale.
|
||||
// Visibile solo se l'intervento non è stato nè fatturato nè completato.
|
||||
if (!$record['flag_completato']) {
|
||||
$link = $record['prezzo_vendita'] == 0 ? $structure->fileurl('row-edit.php') : $structure->fileurl('add_righe.php');
|
||||
$link = $r['is_sconto'] == 1 ? $structure->fileurl('row-edit.php') : $structure->fileurl('add_righe.php');
|
||||
|
||||
echo '
|
||||
<td class="text-center">
|
||||
|
|
Loading…
Reference in New Issue