2013-11-26 13:45:07 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class Account extends Eloquent
|
|
|
|
{
|
|
|
|
protected $softDelete = true;
|
|
|
|
|
|
|
|
public function users()
|
|
|
|
{
|
|
|
|
return $this->hasMany('User');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function clients()
|
|
|
|
{
|
|
|
|
return $this->hasMany('Client');
|
|
|
|
}
|
|
|
|
|
2013-12-01 13:22:08 +01:00
|
|
|
public function invoices()
|
|
|
|
{
|
|
|
|
return $this->hasMany('Invoice');
|
|
|
|
}
|
|
|
|
|
2013-11-26 13:45:07 +01:00
|
|
|
public function account_gateways()
|
|
|
|
{
|
|
|
|
return $this->hasMany('AccountGateway');
|
|
|
|
}
|
|
|
|
|
2013-12-29 12:28:44 +01:00
|
|
|
public function tax_rates()
|
|
|
|
{
|
|
|
|
return $this->hasMany('TaxRate');
|
|
|
|
}
|
|
|
|
|
2013-12-01 21:58:25 +01:00
|
|
|
public function country()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('Country');
|
2013-12-02 13:22:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function timezone()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('Timezone');
|
2013-12-01 21:58:25 +01:00
|
|
|
}
|
|
|
|
|
2013-12-15 13:55:50 +01:00
|
|
|
public function date_format()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('DateFormat');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function datetime_format()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('DatetimeFormat');
|
|
|
|
}
|
|
|
|
|
2014-01-06 19:03:00 +01:00
|
|
|
public function size()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('Size');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function industry()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('Industry');
|
|
|
|
}
|
2013-12-15 13:55:50 +01:00
|
|
|
|
2013-11-26 13:45:07 +01:00
|
|
|
public function isGatewayConfigured($gatewayId = 0)
|
|
|
|
{
|
|
|
|
if ($gatewayId)
|
|
|
|
{
|
|
|
|
return $this->getGatewayConfig($gatewayId) != false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return count($this->account_gateways) > 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getGatewayConfig($gatewayId)
|
|
|
|
{
|
|
|
|
foreach ($this->account_gateways as $gateway)
|
|
|
|
{
|
|
|
|
if ($gateway->gateway_id == $gatewayId)
|
|
|
|
{
|
|
|
|
return $gateway;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getLogoPath()
|
|
|
|
{
|
2013-12-04 17:20:14 +01:00
|
|
|
return 'logo/' . $this->account_key . '.jpg';
|
2013-11-26 13:45:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getLogoWidth()
|
|
|
|
{
|
|
|
|
list($width, $height) = getimagesize($this->getLogoPath());
|
|
|
|
return $width;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getLogoHeight()
|
|
|
|
{
|
|
|
|
list($width, $height) = getimagesize($this->getLogoPath());
|
|
|
|
return $height;
|
|
|
|
}
|
2013-12-01 13:22:08 +01:00
|
|
|
|
|
|
|
public function getNextInvoiceNumber()
|
2014-01-06 19:03:00 +01:00
|
|
|
{
|
|
|
|
$order = Invoice::withTrashed()->scope(false, $this->id)->orderBy('created_at', 'DESC')->first();
|
2013-12-01 13:22:08 +01:00
|
|
|
|
|
|
|
if ($order)
|
|
|
|
{
|
2014-01-06 19:03:00 +01:00
|
|
|
$number = preg_replace("/[^0-9]/", "", $order->invoice_number);
|
|
|
|
$number = intval($number) + 1;
|
2013-12-01 21:58:25 +01:00
|
|
|
return str_pad($number, 4, "0", STR_PAD_LEFT);
|
2013-12-01 13:22:08 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return DEFAULT_INVOICE_NUMBER;
|
|
|
|
}
|
|
|
|
}
|
2014-01-06 19:03:00 +01:00
|
|
|
|
|
|
|
public function loadLocalizationSettings()
|
|
|
|
{
|
|
|
|
$this->load('timezone', 'date_format', 'datetime_format');
|
|
|
|
|
|
|
|
Session::put(SESSION_TIMEZONE, $this->timezone ? $this->timezone->name : DEFAULT_TIMEZONE);
|
|
|
|
Session::put(SESSION_DATE_FORMAT, $this->date_format ? $this->date_format->format : DEFAULT_DATE_FORMAT);
|
|
|
|
Session::put(SESSION_DATE_PICKER_FORMAT, $this->date_format ? $this->date_format->picker_format : DEFAULT_DATE_PICKER_FORMAT);
|
|
|
|
Session::put(SESSION_DATETIME_FORMAT, $this->datetime_format ? $this->datetime_format->format : DEFAULT_DATETIME_FORMAT);
|
|
|
|
Session::put(SESSION_CURRENCY, $this->currency_id ? $this->currency_id : DEFAULT_CURRENCY);
|
|
|
|
}
|
2013-11-26 13:45:07 +01:00
|
|
|
}
|