2014-01-06 19:03:00 +01:00
< ? php namespace ninja\repositories ;
use Credit ;
use Client ;
use Invoice ;
use Utils ;
class CreditRepository
{
public function find ( $clientPublicId = null , $filter = null )
{
$query = \DB :: table ( 'credits' )
-> join ( 'clients' , 'clients.id' , '=' , 'credits.client_id' )
-> join ( 'contacts' , 'contacts.client_id' , '=' , 'clients.id' )
-> where ( 'clients.account_id' , '=' , \Auth :: user () -> account_id )
-> where ( 'clients.deleted_at' , '=' , null )
-> where ( 'contacts.is_primary' , '=' , true )
2014-01-16 22:12:46 +01:00
-> select ( 'credits.public_id' , 'clients.name as client_name' , 'clients.public_id as client_public_id' , 'credits.amount' , 'credits.balance' , 'credits.credit_date' , 'clients.currency_id' , 'contacts.first_name' , 'contacts.last_name' , 'contacts.email' , 'credits.private_notes' );
2014-01-06 19:03:00 +01:00
if ( $clientPublicId )
{
$query -> where ( 'clients.public_id' , '=' , $clientPublicId );
}
2014-07-30 09:08:01 +02:00
if ( ! \Session :: get ( 'show_trash:credit' ))
2014-02-18 22:56:18 +01:00
{
$query -> where ( 'credits.deleted_at' , '=' , null );
}
2014-01-06 19:03:00 +01:00
if ( $filter )
{
$query -> where ( function ( $query ) use ( $filter )
{
$query -> where ( 'clients.name' , 'like' , '%' . $filter . '%' );
});
}
return $query ;
}
public function save ( $publicId = null , $input )
{
if ( $publicId )
{
$credit = Credit :: scope ( $publicId ) -> firstOrFail ();
}
else
{
$credit = Credit :: createNew ();
}
$credit -> client_id = Client :: getPrivateId ( $input [ 'client' ]);
$credit -> credit_date = Utils :: toSqlDate ( $input [ 'credit_date' ]);
2014-01-14 12:52:56 +01:00
$credit -> amount = Utils :: parseFloat ( $input [ 'amount' ]);
2014-01-16 22:12:46 +01:00
$credit -> balance = Utils :: parseFloat ( $input [ 'amount' ]);
2014-01-15 15:01:24 +01:00
$credit -> private_notes = trim ( $input [ 'private_notes' ]);
2014-01-06 19:03:00 +01:00
$credit -> save ();
return $credit ;
}
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
$credits = Credit :: withTrashed () -> scope ( $ids ) -> get ();
2014-01-06 19:03:00 +01:00
foreach ( $credits as $credit )
{
if ( $action == 'delete' )
{
$credit -> is_deleted = true ;
$credit -> save ();
}
$credit -> delete ();
}
return count ( $credits );
}
}