Merge pull request #2146 from cuneytsenturk/master

Added Revenue/Payment show page [#mdbaet]
This commit is contained in:
Cüneyt Şentürk
2021-06-27 13:06:52 +03:00
committed by GitHub
53 changed files with 3732 additions and 152 deletions

View File

@ -4,6 +4,7 @@ return [
'bill_number' => 'Bill Number',
'bill_date' => 'Bill Date',
'bill_amount' => 'Bill Amount',
'total_price' => 'Total Price',
'due_date' => 'Due Date',
'order_number' => 'Order Number',

View File

@ -3,7 +3,7 @@
return [
'edit_columns' => 'Edit Columns',
'empty_items' =>'You have not added any items.',
'empty_items' => 'You have not added any items.',
'statuses' => [
'draft' => 'Draft',

View File

@ -47,4 +47,8 @@ return [
'body' => 'Hello,<br /><br />Based on {vendor_name} recurring circle, <strong>{bill_number}</strong> bill has been automatically created.<br /><br />You can see the bill details from the following link: <a href="{bill_admin_link}">{bill_number}</a>.<br /><br />Best Regards,<br />{company_name}',
],
'revenue_new_customer' => [
'subject' => '{revenue_date} payment created',
'body' => 'Dear {customer_name},<br /><br />We have prepared the following payment. <br /><br />You can see the payment details from the following link: <a href="{revenue_guest_link}">{revenue_date}</a>.<br /><br />Feel free to contact us for any question.<br /><br />Best Regards,<br />{company_name}',
],
];

View File

@ -162,6 +162,7 @@ return [
'due_on' => 'Due on',
'amount_due' => 'Amount due',
'financial_year' => 'Financial Year',
'created' => 'Created',
'card' => [
'cards' => 'Card|Cards',

View File

@ -4,6 +4,7 @@ return [
'invoice_number' => 'Invoice Number',
'invoice_date' => 'Invoice Date',
'invoice_amount' => 'Invoice Amount',
'total_price' => 'Total Price',
'due_date' => 'Due Date',
'order_number' => 'Order Number',

View File

@ -0,0 +1,9 @@
<?php
return [
'payment_made' => 'Payment Made',
'paid_to' => 'Paid To',
'related_bill' => 'Releated Bill',
];

View File

@ -0,0 +1,9 @@
<?php
return [
'revenue_received' => 'Revenue Received',
'paid_by' => 'Paid By',
'related_invoice' => 'Releated Invoice',
];