update payments and vat mentions
This commit is contained in:
@@ -27,6 +27,8 @@
|
||||
</table>
|
||||
@endif
|
||||
|
||||
@include('load.form.datepicker')
|
||||
|
||||
@push('js')
|
||||
<script>
|
||||
$('#add_payment').click(function() {
|
||||
@@ -37,14 +39,14 @@
|
||||
var url_open = "{{ route('Admin.Shop.InvoicePayments.create') }}";
|
||||
var url_save = "{{ route('Admin.Shop.InvoicePayments.store') }}";
|
||||
openModal("Ajouter un paiement", '#invoice_payment-form', url_open, url_save,
|
||||
"InvoicePaymentRefresh();");
|
||||
"InvoicePaymentRefresh();", 'sm');
|
||||
}
|
||||
|
||||
function InvoicePaymentEdit(id) {
|
||||
var url_open = "{{ route('Admin.Shop.InvoicePayments.edit') }}/" + id;
|
||||
var url_save = "{{ route('Admin.Shop.InvoicePayments.store') }}";
|
||||
openModal("Editer un paiement", '#invoice_payment-form', url_open, url_save,
|
||||
"InvoicePaymentRefresh();");
|
||||
"InvoicePaymentRefresh();", 'sm');
|
||||
}
|
||||
|
||||
function InvoicePaymentRefresh() {
|
||||
|
||||
Reference in New Issue
Block a user