Container

This commit is contained in:
2020-01-07 12:25:52 -03:00
parent 2300ca5641
commit 782e79dd30
19 changed files with 60 additions and 60 deletions

View File

@ -25,7 +25,7 @@ class AvanceConstruccion extends Model
public function fecha(\DateTime $fecha = null)
{
if ($fecha == null) {
return Carbon::parse($this->fecha, config('app.timezone'));
return Carbon::parse($this->fecha, $this->container->get('settings')->app->timezone);
}
$this->fecha = $fecha->format('Y-m-d');
}
@ -52,7 +52,7 @@ class AvanceConstruccion extends Model
public function uf()
{
if ($this->uf == 0) {
$uf = uf($this->fecha());
$uf = $this->container->get('uf')($this->fecha());
if ($uf->total > 0) {
$this->uf = $uf->uf->value;
$this->save();
@ -70,7 +70,7 @@ class AvanceConstruccion extends Model
public function fechaPago(\DateTime $fecha = null)
{
if ($fecha == null) {
return Carbon::parse($this->fecha_pagado, config('app.timezone'));
return Carbon::parse($this->fecha_pagado, $this->container->get('settings')->app->timezone);
}
$this->fecha_pagado = $fecha->format('Y-m-d');
}

View File

@ -18,7 +18,7 @@ class EstadoProyectoAgente extends Model
}
public function fecha(\DateTime $fecha = null) {
if ($fecha == null) {
return Carbon::parse($this->fecha, config('app.timezone'));
return Carbon::parse($this->fecha, $this->container->get('settings')->app->timezone);
}
$this->fecha = $fecha->format('Y-m-d');
}

View File

@ -33,14 +33,14 @@ class Pagare extends Model
public function fecha(\DateTime $fecha = null)
{
if ($fecha == null) {
return Carbon::parse($this->fecha, config('app.timezone'));
return Carbon::parse($this->fecha, $this->container->get('settings')->app->timezone);
}
$this->fecha = $fecha->format('Y-m-d');
}
public function fechaBanco(\DateTime $fecha = null)
{
if ($fecha == null) {
return Carbon::parse($this->fecha_banco, config('app.timezone'));
return Carbon::parse($this->fecha_banco, $this->container->get('settings')->app->timezone);
}
$this->fecha_banco = $fecha->format('Y-m-d');
}
@ -51,7 +51,7 @@ class Pagare extends Model
public function uf()
{
if ($this->uf == 0 and $this->fecha != '0000-00-00') {
$uf = uf($this->fecha());
$uf = $this->container->get('uf')($this->fecha());
if ($uf->total > 0) {
$this->uf = $uf->uf->value;
$this->save();

View File

@ -546,7 +546,7 @@ class Proyecto extends Model
if (isset($this->cuotas)) {
$cuotas = (array) $this->cuotas;
}
$f = Carbon::today(config('app.timezone'));
$f = Carbon::today($this->container->get('settings')->app->timezone);
$cuotas['hoy'] = model(Venta::class)
->join('propiedad', ['propiedad.id', '=', 'venta.propiedad'])
->join('unidad', ['unidad.id', '=', 'propiedad.unidad_principal'])
@ -570,7 +570,7 @@ class Proyecto extends Model
if (isset($this->cuotas)) {
$cuotas = (array) $this->cuotas;
}
$f = Carbon::today(config('app.timezone'));
$f = Carbon::today($this->container->get('settings')->app->timezone);
$cuotas['pendientes'] = model(Cuota::class)
->join('venta', ['cuota.pie', '=', 'venta.pie'])
->join('propiedad', ['propiedad.id', '=', 'venta.propiedad'])
@ -594,7 +594,7 @@ class Proyecto extends Model
if (isset($this->cuotas)) {
$cuotas = (array) $this->cuotas;
}
$f = Carbon::today(config('app.timezone'));
$f = Carbon::today($this->container->get('settings')->app->timezone);
$cuotas['mes'] = model(Cuota::class)
->join('venta', ['cuota.pie', '=', 'venta.pie'])
->join('propiedad', ['propiedad.id', '=', 'venta.propiedad'])

View File

@ -23,14 +23,14 @@ class RenovacionPagare extends Model
public function fecha(\DateTime $fecha = null)
{
if ($fecha == null) {
return Carbon::parse($this->fecha, config('app.timezone'));
return Carbon::parse($this->fecha, $this->container->get('settings')->app->timezone);
}
$this->fecha = $fecha->format('Y-m-d');
}
public function fechaBanco(\DateTime $fecha = null)
{
if ($fecha == null) {
return Carbon::parse($this->fecha_banco, config('app.timezone'));
return Carbon::parse($this->fecha_banco, $this->container->get('settings')->app->timezone);
}
$this->fecha_banco = $fecha->format('Y-m-d');
}
@ -41,7 +41,7 @@ class RenovacionPagare extends Model
public function uf()
{
if ($this->uf == 0) {
$uf = uf($this->fecha());
$uf = $this->container->get('uf')($this->fecha());
if ($uf->total > 0) {
$this->uf = $uf->uf->value;
$this->save();