Skip to content

Commit

Permalink
fixed unexpected character
Browse files Browse the repository at this point in the history
  • Loading branch information
denisdulici committed Feb 20, 2019
1 parent 333536d commit e1027b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/Modals/InvoicePayments.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public function store(Invoice $invoice, Request $request)
if ($invoice->currency_code != $request['currency_code']) {
$error_amount_model = new InvoicePayment();

$error_amount_model->default_currency_code = $request['currency_code'];
$error_amount_model->default_currency_code = $request['currency_code'];
$error_amount_model->amount = $error_amount;
$error_amount_model->currency_code = $invoice->currency_code;
$error_amount_model->currency_rate = $currencies[$invoice->currency_code];
Expand Down

1 comment on commit e1027b9

@abbasharoon
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi, Just to bring in to your notice, the cloud code isn't updated yet. Getting 500 error when add payment is clicked

Please sign in to comment.