Compare commits

...

2 Commits

Author SHA1 Message Date
Nikhil
b414764552 Update readme.md 2021-12-27 20:05:56 +05:30
Mwikala Kangwa
d69b7fd491 Allow invoices to be sent/resent from the invoice view page (#623)
* Allow invoices to be sent/resent from the invoice view page
2021-12-17 20:40:41 +05:30
2 changed files with 2 additions and 1 deletions

View File

@@ -55,6 +55,8 @@ Join the Crater discord server to discuss:
- [x] Multiple Companies
- [x] Recurring Invoices
- [ ] Modules
- [ ] Blockchain Integration
- [ ] Web 3.0 Accounting
- [ ] White Labeling (Easy Invoice, Email & Consumer Portal Theme customisation)
- [ ] Vendors, Inventory & Bills
- [ ] Payment Reminders

View File

@@ -153,7 +153,6 @@ const utils = inject('utils')
function canReSendInvoice(row) {
return (
(row.status == 'SENT' || row.status == 'VIEWED') &&
route.name !== 'invoices.view' &&
userStore.hasAbilities(abilities.SEND_INVOICE)
)
}