File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
modules/financial/components/invoice Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 383
383
"Name" : " Name" ,
384
384
"Balance" : " Balance" ,
385
385
"CreateInvoice" : " Create Invoice" ,
386
- "isCreditInvoice" : " Is credit invoice"
386
+ "isCreditInvoice" : " Is credit invoice" ,
387
+ "InvoiceUsersDescription" : " Invoice user with oustanding debts." ,
388
+ "NoInvoiceableUsers" : " Currently, there are no users with outstanding debts."
387
389
},
388
390
"pdf" : {
389
391
"Table" : " Table" ,
Original file line number Diff line number Diff line change 1
1
<template >
2
2
<CardComponent :header =" $t('c_invoiceInfo.InvoiceUsers')" class =" w-5" >
3
+ <p class =" my-0 font-italic text-sm " >{{ $t('c_invoiceInfo.InvoiceUsersDescription') }}</p >
4
+ <p v-if =" invoiceableUsersWithBalance.length === 0" >{{ $t('c_invoiceInfo.NoInvoiceableUsers') }}</p >
3
5
<DataTable
6
+ v-else
4
7
:value =" invoiceableUsersWithBalance"
5
8
>
6
9
<Column field =" user.id" :header =" $t('c_invoiceInfo.id')" />
You can’t perform that action at this time.
0 commit comments