#8667: Modified ClientPayment #1622
No reviewers
Labels
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: verdnatura/salix-front#1622
Loading…
Reference in New Issue
No description provided.
Delete Branch "8667-FixClientNewPayment"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -256,2 +251,2 @@
<template #column-balance="{ rowIndex }">
{{ toCurrency(balances[rowIndex]?.balance) }}
<template #column-balance="{ row }">
{{ toCurrency(balances[row]?.balance) }}
esto no puede ir en format?
Veo que tiene dependencia con balances pero yo creo que al hacerlo en el onfetch todavía no renderiza
@ -258,0 +252,4 @@
{{ toCurrency(balances[row]?.balance) }}
</template>
<template #column-workerFk="{ row }">
<span class="link">
@click.stop
@ -48,6 +48,7 @@ const maxAmount = ref();
const accountingType = ref({});
const isCash = ref(false);
const formModelRef = ref(false);
Sobra el import de FormModel
@ -122,3 +123,3 @@
});
if (viewReceipt.value) openReport(`Receipts/${id}/receipt-pdf`);
if (viewReceipt.value) openReport(`Receipts/${id}/receipt-pdf`, {}, '_blank');
Prefiero usar useOpenURL
https://redmine.verdnatura.es/issues/8810
@ -248,3 +248,3 @@
</div>
<VnRow>
<VnInputNumber
<VnInput
VnAccountNumber?