2019-11-16 10:21:14 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Modals;
|
|
|
|
|
|
|
|
use App\Abstracts\Http\Controller;
|
|
|
|
use App\Http\Requests\Banking\Transaction as Request;
|
|
|
|
use App\Jobs\Banking\CreateDocumentTransaction;
|
|
|
|
use App\Models\Banking\Account;
|
|
|
|
use App\Models\Banking\Transaction;
|
2019-12-31 15:49:09 +03:00
|
|
|
use App\Models\Purchase\Bill;
|
2019-11-16 10:21:14 +03:00
|
|
|
use App\Models\Setting\Currency;
|
|
|
|
use App\Utilities\Modules;
|
|
|
|
use App\Traits\Uploads;
|
|
|
|
|
|
|
|
class BillTransactions extends Controller
|
|
|
|
{
|
|
|
|
use Uploads;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Instantiate a new controller instance.
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
// Add CRUD permission check
|
2019-12-31 15:49:09 +03:00
|
|
|
$this->middleware('permission:create-purchases-bills')->only(['create', 'store', 'duplicate', 'import']);
|
|
|
|
$this->middleware('permission:read-purchases-bills')->only(['index', 'show', 'edit', 'export']);
|
|
|
|
$this->middleware('permission:update-purchases-bills')->only(['update', 'enable', 'disable']);
|
|
|
|
$this->middleware('permission:delete-purchases-bills')->only('destroy');
|
2019-11-16 10:21:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the form for creating a new resource.
|
|
|
|
*
|
|
|
|
* @param Bill $bill
|
|
|
|
*
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function create(Bill $bill)
|
|
|
|
{
|
|
|
|
$accounts = Account::enabled()->orderBy('name')->pluck('name', 'id');
|
|
|
|
|
|
|
|
$currencies = Currency::enabled()->orderBy('name')->pluck('name', 'code')->toArray();
|
|
|
|
|
|
|
|
$currency = Currency::where('code', $bill->currency_code)->first();
|
|
|
|
|
|
|
|
$payment_methods = Modules::getPaymentMethods();
|
|
|
|
|
2020-02-11 21:55:13 +03:00
|
|
|
$paid = $bill->paid;
|
2019-11-16 10:21:14 +03:00
|
|
|
|
|
|
|
// Get Bill Totals
|
|
|
|
foreach ($bill->totals as $bill_total) {
|
|
|
|
$bill->{$bill_total->code} = $bill_total->amount;
|
|
|
|
}
|
|
|
|
|
|
|
|
$total = money($bill->total, $currency->code, true)->format();
|
|
|
|
|
|
|
|
$bill->grand_total = money($total, $currency->code)->getAmount();
|
|
|
|
|
|
|
|
if (!empty($paid)) {
|
|
|
|
$bill->grand_total = round($bill->total - $paid, $currency->precision) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
$rand = rand();
|
|
|
|
|
|
|
|
$html = view('modals.bills.payment', compact('bill', 'accounts', 'currencies', 'currency', 'payment_methods', 'rand'))->render();
|
|
|
|
|
|
|
|
return response()->json([
|
|
|
|
'success' => true,
|
|
|
|
'error' => false,
|
|
|
|
'message' => 'null',
|
|
|
|
'html' => $html,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Store a newly created resource in storage.
|
|
|
|
*
|
|
|
|
* @param Bill $bill
|
|
|
|
* @param Request $request
|
|
|
|
*
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function store(Bill $bill, Request $request)
|
|
|
|
{
|
2020-02-11 19:17:50 +03:00
|
|
|
$response = $this->ajaxDispatch(new CreateDocumentTransaction($bill, $request));
|
|
|
|
|
|
|
|
if ($response['success']) {
|
|
|
|
$response['redirect'] = route('bills.show', $bill->id);
|
2019-11-16 10:21:14 +03:00
|
|
|
|
|
|
|
$message = trans('messages.success.added', ['type' => trans_choice('general.payments', 1)]);
|
|
|
|
|
2020-01-21 19:51:14 +03:00
|
|
|
flash($message)->success();
|
2020-02-11 19:17:50 +03:00
|
|
|
} else {
|
|
|
|
$response['redirect'] = null;
|
2019-11-16 10:21:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return response()->json($response);
|
|
|
|
}
|
|
|
|
}
|