terminando servicios manipulados y preimpresion

This commit is contained in:
2023-12-04 20:50:58 +01:00
parent 76c815212f
commit ab6763aeaa
329 changed files with 811 additions and 59359 deletions

View File

@ -1,30 +0,0 @@
/**
* Add Payment Offcanvas
*/
'use strict';
(function () {
// Invoice amount
const paymentAmount = document.querySelector('.invoice-amount');
// Prefix
if (paymentAmount) {
new Cleave(paymentAmount, {
numeral: true
});
}
// Datepicker
const date = new Date(),
invoiceDateList = document.querySelectorAll('.invoice-date');
if (invoiceDateList) {
invoiceDateList.forEach(function (invoiceDateEl) {
invoiceDateEl.flatpickr({
monthSelectorType: 'static',
defaultDate: date
});
});
}
})();