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 394
394
"Name" : " Name" ,
395
395
"Balance" : " Balance" ,
396
396
"CreateInvoice" : " Create Invoice" ,
397
- "isCreditInvoice" : " Is credit invoice"
397
+ "isCreditInvoice" : " Is credit invoice" ,
398
+ "InvoiceUsersDescription" : " Invoice user with oustanding debts." ,
399
+ "NoInvoiceableUsers" : " Currently, there are no users with outstanding debts."
398
400
},
399
401
"pdf" : {
400
402
"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