mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-28 14:39:28 +01:00
swal per duplica preventivo
This commit is contained in:
parent
336e969221
commit
42683cfc89
@ -315,8 +315,8 @@ WHERE (SELECT COUNT(*) FROM in_interventi_tecnici WHERE in_interventi_tecnici.id
|
|||||||
|
|
||||||
|
|
||||||
if (checkdate($data->format('m'), $data->format('d'), $data->format('Y'))){
|
if (checkdate($data->format('m'), $data->format('d'), $data->format('Y'))){
|
||||||
echo '
|
echo '
|
||||||
<option value="'.$chiave.'">'.ucfirst($testo).'</option>';
|
<option value="'.$chiave.'">'.ucfirst($testo).'</option>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
include_once __DIR__.'/../../core.php';
|
include_once __DIR__.'/../../core.php';
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<button type="button" class="btn btn-primary" onclick="if( confirm(\'Duplicare questo preventivo?\') ){ $(\'#copia-preventivo\').submit(); }">
|
<button type="button" class="btn btn-primary" onclick="copiaPreventivo();">
|
||||||
<i class="fa fa-copy"></i> '.tr('Duplica preventivo').'
|
<i class="fa fa-copy"></i> '.tr('Duplica preventivo').'
|
||||||
</button>';
|
</button>';
|
||||||
|
|
||||||
@ -96,3 +96,22 @@ echo '
|
|||||||
<input type="hidden" name="backto" value="record-edit">
|
<input type="hidden" name="backto" value="record-edit">
|
||||||
<input type="hidden" name="op" value="copy">
|
<input type="hidden" name="op" value="copy">
|
||||||
</form>';
|
</form>';
|
||||||
|
|
||||||
|
echo '
|
||||||
|
<script>
|
||||||
|
function copiaPreventivo() {
|
||||||
|
swal({
|
||||||
|
title: "'.tr('Duplicare il preventivo?').'",
|
||||||
|
text: "'.tr('').'",
|
||||||
|
type: "info",
|
||||||
|
showCancelButton: true,
|
||||||
|
confirmButtonClass: "btn btn-lg btn-primary",
|
||||||
|
confirmButtonText: "'.tr('Duplica').'",
|
||||||
|
}).then(
|
||||||
|
function() {
|
||||||
|
$("#copia-preventivo").submit();
|
||||||
|
},
|
||||||
|
function() {}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
</script>';
|
Loading…
x
Reference in New Issue
Block a user