mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-27 19:51:09 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			253 lines
		
	
	
		
			7.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			253 lines
		
	
	
		
			7.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| namespace Crater\Http\Controllers;
 | |
| 
 | |
| use Illuminate\Http\Request;
 | |
| use Crater\CompanySetting;
 | |
| use Crater\Currency;
 | |
| use Crater\Invoice;
 | |
| use Crater\Payment;
 | |
| use Carbon\Carbon;
 | |
| use function MongoDB\BSON\toJSON;
 | |
| use Crater\User;
 | |
| use Crater\Http\Requests\PaymentRequest;
 | |
| 
 | |
| class PaymentController extends Controller
 | |
| {
 | |
|     /**
 | |
|      * Display a listing of the resource.
 | |
|      *
 | |
|      * @return \Illuminate\Http\Response
 | |
|      */
 | |
|     public function index(Request $request)
 | |
|     {
 | |
|         $limit = $request->has('limit') ? $request->limit : 10;
 | |
| 
 | |
|         $payments = Payment::with('user', 'invoice')
 | |
|             ->join('users', 'users.id', '=', 'payments.user_id')
 | |
|             ->leftJoin('invoices', 'invoices.id', '=', 'payments.invoice_id')
 | |
|             ->applyFilters($request->only([
 | |
|                 'search',
 | |
|                 'payment_number',
 | |
|                 'payment_mode',
 | |
|                 'customer_id',
 | |
|                 'orderByField',
 | |
|                 'orderBy'
 | |
|             ]))
 | |
|             ->whereCompany($request->header('company'))
 | |
|             ->select('payments.*', 'users.name', 'invoices.invoice_number')
 | |
|             ->latest()
 | |
|             ->paginate($limit);
 | |
| 
 | |
|         return response()->json([
 | |
|             'payments' => $payments
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Show the form for creating a new resource.
 | |
|      *
 | |
|      * @return \Illuminate\Http\Response
 | |
|      */
 | |
|     public function create(Request $request)
 | |
|     {
 | |
|         $nextPaymentNumber = 'PAY-'.Payment::getNextPaymentNumber();
 | |
| 
 | |
|         return response()->json([
 | |
|             'customers' => User::where('role', 'customer')
 | |
|                 ->whereCompany($request->header('company'))
 | |
|                 ->get(),
 | |
|             'nextPaymentNumber' => $nextPaymentNumber
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Store a newly created resource in storage.
 | |
|      *
 | |
|      * @param  \Illuminate\Http\Request  $request
 | |
|      * @return \Illuminate\Http\Response
 | |
|      */
 | |
|     public function store(PaymentRequest $request)
 | |
|     {
 | |
|         $payment_date = Carbon::createFromFormat('d/m/Y', $request->payment_date);
 | |
| 
 | |
|         if ($request->has('invoice_id') && $request->invoice_id != null) {
 | |
|             $invoice = Invoice::find($request->invoice_id);
 | |
|             if ($invoice && $invoice->due_amount == $request->amount) {
 | |
|                 $invoice->status = Invoice::STATUS_COMPLETED;
 | |
|                 $invoice->paid_status = Invoice::STATUS_PAID;
 | |
|                 $invoice->due_amount = 0;
 | |
|             } elseif ($invoice && $invoice->due_amount != $request->amount) {
 | |
|                 $invoice->due_amount = (int)$invoice->due_amount - (int)$request->amount;
 | |
|                 if ($invoice->due_amount < 0) {
 | |
|                     return response()->json([
 | |
|                         'error' => 'invalid_amount'
 | |
|                     ]);
 | |
|                 }
 | |
|                 $invoice->paid_status = Invoice::STATUS_PARTIALLY_PAID;
 | |
|             }
 | |
|             $invoice->save();
 | |
|         }
 | |
| 
 | |
|         $payment = Payment::create([
 | |
|             'payment_date' => $payment_date,
 | |
|             'payment_number' => $request->payment_number,
 | |
|             'user_id' => $request->user_id,
 | |
|             'company_id' => $request->header('company'),
 | |
|             'invoice_id' => $request->invoice_id,
 | |
|             'payment_mode' => $request->payment_mode,
 | |
|             'amount' => $request->amount,
 | |
|             'notes' => $request->notes,
 | |
|         ]);
 | |
| 
 | |
|         return response()->json([
 | |
|             'payment' => $payment,
 | |
|             'success' => true
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Display the specified resource.
 | |
|      *
 | |
|      * @param  int  $id
 | |
|      * @return \Illuminate\Http\Response
 | |
|      */
 | |
|     public function show($id)
 | |
|     {
 | |
|         //
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Show the form for editing the specified resource.
 | |
|      *
 | |
|      * @param  int  $id
 | |
|      * @return \Illuminate\Http\Response
 | |
|      */
 | |
|     public function edit(Request $request, $id)
 | |
|     {
 | |
|         $payment = Payment::with('user', 'invoice')->find($id);
 | |
| 
 | |
|         $invoices = Invoice::where('paid_status', '<>', Invoice::STATUS_PAID)
 | |
|             ->where('user_id', $payment->user_id)->where('due_amount', '>', 0)
 | |
|             ->whereCompany($request->header('company'))
 | |
|             ->get();
 | |
| 
 | |
|         return response()->json([
 | |
|             'customers' => User::where('role', 'customer')
 | |
|                 ->whereCompany($request->header('company'))
 | |
|                 ->get(),
 | |
|             'nextPaymentNumber' => $payment->payment_number,
 | |
|             'payment' => $payment,
 | |
|             'invoices' => $invoices
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Update the specified resource in storage.
 | |
|      *
 | |
|      * @param  \Illuminate\Http\Request  $request
 | |
|      * @param  int  $id
 | |
|      * @return \Illuminate\Http\Response
 | |
|      */
 | |
|     public function update(PaymentRequest $request, $id)
 | |
|     {
 | |
|         $payment_date = Carbon::createFromFormat('d/m/Y', $request->payment_date);
 | |
| 
 | |
|         $payment = Payment::find($id);
 | |
|         $oldAmount = $payment->amount;
 | |
| 
 | |
|         if ($request->has('invoice_id') && $request->invoice_id && ($oldAmount != $request->amount)) {
 | |
|             $amount = (int)$request->amount - (int)$oldAmount;
 | |
|             $invoice = Invoice::find($request->invoice_id);
 | |
|             $invoice->due_amount = (int)$invoice->due_amount - (int)$amount;
 | |
| 
 | |
|             if ($invoice->due_amount < 0) {
 | |
|                 return response()->json([
 | |
|                     'error' => 'invalid_amount'
 | |
|                 ]);
 | |
|             }
 | |
| 
 | |
|             if ($invoice->due_amount == 0) {
 | |
|                 $invoice->status = Invoice::STATUS_COMPLETED;
 | |
|                 $invoice->paid_status = Invoice::STATUS_PAID;
 | |
|             } else {
 | |
|                 $invoice->status = $invoice->getPreviousStatus();
 | |
|                 $invoice->paid_status = Invoice::STATUS_PARTIALLY_PAID;
 | |
|             }
 | |
| 
 | |
|             $invoice->save();
 | |
|         }
 | |
| 
 | |
|         $payment->payment_date = $payment_date;
 | |
|         $payment->payment_number = $request->payment_number;
 | |
|         $payment->user_id = $request->user_id;
 | |
|         $payment->invoice_id = $request->invoice_id;
 | |
|         $payment->payment_mode = $request->payment_mode;
 | |
|         $payment->amount = $request->amount;
 | |
|         $payment->notes = $request->notes;
 | |
|         $payment->save();
 | |
| 
 | |
|         return response()->json([
 | |
|             'payment' => $payment,
 | |
|             'success' => true
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Remove the specified resource from storage.
 | |
|      *
 | |
|      * @param  int  $id
 | |
|      * @return \Illuminate\Http\Response
 | |
|      */
 | |
|     public function destroy($id)
 | |
|     {
 | |
|         $payment = Payment::find($id);
 | |
| 
 | |
|         if ($payment->invoice_id != null) {
 | |
|             $invoice = Invoice::find($payment->invoice_id);
 | |
|             $invoice->due_amount = ((int)$invoice->due_amount + (int)$payment->amount);
 | |
| 
 | |
|             if ($invoice->due_amount == $invoice->total) {
 | |
|                 $invoice->paid_status = Invoice::STATUS_UNPAID;
 | |
|             } else {
 | |
|                 $invoice->paid_status = Invoice::STATUS_PARTIALLY_PAID;
 | |
|             }
 | |
| 
 | |
|             $invoice->status = $invoice->getPreviousStatus();
 | |
|             $invoice->save();
 | |
|         }
 | |
| 
 | |
|         $payment->delete();
 | |
| 
 | |
|         return response()->json([
 | |
|             'success' => true
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     public function delete(Request $request)
 | |
|     {
 | |
|         foreach ($request->id as $id) {
 | |
|             $payment = Payment::find($id);
 | |
| 
 | |
|             if ($payment->invoice_id != null) {
 | |
|                 $invoice = Invoice::find($payment->invoice_id);
 | |
|                 $invoice->due_amount = ((int)$invoice->due_amount + (int)$payment->amount);
 | |
| 
 | |
|                 if ($invoice->due_amount == $invoice->total) {
 | |
|                     $invoice->paid_status = Invoice::STATUS_UNPAID;
 | |
|                 } else {
 | |
|                     $invoice->paid_status = Invoice::STATUS_PARTIALLY_PAID;
 | |
|                 }
 | |
| 
 | |
|                 $invoice->status = $invoice->getPreviousStatus();
 | |
|                 $invoice->save();
 | |
|             }
 | |
| 
 | |
|             $payment->delete();
 | |
|         }
 | |
| 
 | |
|         return response()->json([
 | |
|             'success' => true
 | |
|         ]);
 | |
|     }
 | |
| }
 |