Skip to content

Commit

Permalink
close #2179 Fixed: Email tags Issue in Invoice/Bill Templates #nna2rb
Browse files Browse the repository at this point in the history
  • Loading branch information
cuneytsenturk committed Jul 7, 2021
1 parent 50d9290 commit e24a633
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/Notifications/Purchase/Bill.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ public function getTagsReplacement()
$this->bill->document_number,
money($this->bill->amount, $this->bill->currency_code, true),
money($this->bill->amount_due, $this->bill->currency_code, true),
company_date($this->bill->issued_at),
company_date($this->bill->due_at),
route('bills.show', $this->bill->id),
$this->bill->contact_name,
Expand Down
1 change: 1 addition & 0 deletions app/Notifications/Sale/Invoice.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ public function getTagsReplacement()
$this->invoice->document_number,
money($this->invoice->amount, $this->invoice->currency_code, true),
money($this->invoice->amount_due, $this->invoice->currency_code, true),
company_date($this->invoice->issued_at),
company_date($this->invoice->due_at),
URL::signedRoute('signed.invoices.show', [$this->invoice->id]),
route('invoices.show', $this->invoice->id),
Expand Down

0 comments on commit e24a633

Please sign in to comment.