0
0
Fork 0

chore: refs #7663 drop useless code

This commit is contained in:
Jorge Penadés 2024-09-10 10:04:40 +02:00
parent f9adc49284
commit 5cc1d0cec4
1 changed files with 0 additions and 5 deletions

View File

@ -170,15 +170,10 @@ async function sendSms(body) {
} }
function openConfirmDialog(callback) { function openConfirmDialog(callback) {
const message =
callback == 'setWeight'
? t('Es posible que se facture este ticket, desea continuar?')
: undefined;
dialog({ dialog({
component: VnConfirm, component: VnConfirm,
componentProps: { componentProps: {
promise: actions[callback], promise: actions[callback],
message,
}, },
}); });
} }