2014-01-06 19:03:00 +01:00
< ? php namespace ninja\repositories ;
use Payment ;
2014-01-16 22:12:46 +01:00
use Credit ;
2014-01-06 19:03:00 +01:00
use Invoice ;
use Client ;
use Utils ;
class PaymentRepository
{
public function find ( $clientPublicId = null , $filter = null )
{
$query = \DB :: table ( 'payments' )
-> join ( 'clients' , 'clients.id' , '=' , 'payments.client_id' )
2014-01-13 20:22:43 +01:00
-> join ( 'invoices' , 'invoices.id' , '=' , 'payments.invoice_id' )
2014-01-06 19:03:00 +01:00
-> join ( 'contacts' , 'contacts.client_id' , '=' , 'clients.id' )
2014-01-15 15:01:24 +01:00
-> leftJoin ( 'payment_types' , 'payment_types.id' , '=' , 'payments.payment_type_id' )
2014-01-06 19:03:00 +01:00
-> where ( 'payments.account_id' , '=' , \Auth :: user () -> account_id )
-> where ( 'clients.deleted_at' , '=' , null )
-> where ( 'contacts.is_primary' , '=' , true )
2014-05-11 21:40:46 +02:00
-> select ( 'payments.public_id' , 'payments.transaction_reference' , 'clients.name as client_name' , 'clients.public_id as client_public_id' , 'payments.amount' , 'payments.payment_date' , 'invoices.public_id as invoice_public_id' , 'invoices.invoice_number' , 'clients.currency_id' , 'contacts.first_name' , 'contacts.last_name' , 'contacts.email' , 'payment_types.name as payment_type' , 'payments.account_gateway_id' );
2014-01-06 19:03:00 +01:00
2014-07-30 09:08:01 +02:00
if ( ! \Session :: get ( 'show_trash:payment' ))
2014-02-18 22:56:18 +01:00
{
$query -> where ( 'payments.deleted_at' , '=' , null );
}
2014-01-06 19:03:00 +01:00
if ( $clientPublicId )
{
$query -> where ( 'clients.public_id' , '=' , $clientPublicId );
}
if ( $filter )
{
$query -> where ( function ( $query ) use ( $filter )
{
$query -> where ( 'clients.name' , 'like' , '%' . $filter . '%' );
});
}
return $query ;
}
2014-01-16 22:12:46 +01:00
public function getErrors ( $input )
{
$rules = array (
'client' => 'required' ,
'invoice' => 'required' ,
'amount' => 'required|positive'
);
if ( $input [ 'payment_type_id' ] == PAYMENT_TYPE_CREDIT )
{
$rules [ 'payment_type_id' ] = 'has_credit:' . $input [ 'client' ] . ',' . $input [ 'amount' ];
}
$validator = \Validator :: make ( $input , $rules );
if ( $validator -> fails ())
{
return $validator ;
}
return false ;
}
2014-01-06 19:03:00 +01:00
public function save ( $publicId = null , $input )
{
if ( $publicId )
{
$payment = Payment :: scope ( $publicId ) -> firstOrFail ();
}
else
{
$payment = Payment :: createNew ();
}
2014-01-16 22:12:46 +01:00
$paymentTypeId = $input [ 'payment_type_id' ] ? $input [ 'payment_type_id' ] : null ;
2014-10-19 12:13:55 +02:00
$clientId = Client :: getPrivateId ( $input [ 'client' ]);
2014-01-16 22:12:46 +01:00
$amount = Utils :: parseFloat ( $input [ 'amount' ]);
if ( $paymentTypeId == PAYMENT_TYPE_CREDIT )
{
2014-10-19 12:13:55 +02:00
$credits = Credit :: scope () -> where ( 'client_id' , '=' , $clientId )
-> where ( 'balance' , '>' , 0 ) -> orderBy ( 'created_at' ) -> get ();
2014-01-16 22:12:46 +01:00
$applied = 0 ;
foreach ( $credits as $credit )
{
$applied += $credit -> apply ( $amount );
if ( $applied >= $amount )
{
break ;
}
}
}
2014-10-19 12:13:55 +02:00
$payment -> client_id = $clientId ;
2014-01-06 19:03:00 +01:00
$payment -> invoice_id = isset ( $input [ 'invoice' ]) && $input [ 'invoice' ] != " -1 " ? Invoice :: getPrivateId ( $input [ 'invoice' ]) : null ;
2014-01-16 22:12:46 +01:00
$payment -> payment_type_id = $paymentTypeId ;
2014-01-06 19:03:00 +01:00
$payment -> payment_date = Utils :: toSqlDate ( $input [ 'payment_date' ]);
2014-01-16 22:12:46 +01:00
$payment -> amount = $amount ;
2014-05-08 19:16:00 +02:00
$payment -> transaction_reference = trim ( $input [ 'transaction_reference' ]);
2014-01-06 19:03:00 +01:00
$payment -> save ();
return $payment ;
}
public function bulk ( $ids , $action )
{
2014-01-12 19:55:33 +01:00
if ( ! $ids )
{
return 0 ;
}
2014-09-13 23:13:09 +02:00
$payments = Payment :: withTrashed () -> scope ( $ids ) -> get ();
2014-01-06 19:03:00 +01:00
foreach ( $payments as $payment )
{
if ( $action == 'delete' )
{
$payment -> is_deleted = true ;
$payment -> save ();
}
$payment -> delete ();
}
return count ( $payments );
}
}