Container
This commit is contained in:
@ -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');
|
||||
}
|
||||
|
@ -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');
|
||||
}
|
||||
|
@ -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();
|
||||
|
@ -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'])
|
||||
|
@ -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();
|
||||
|
Reference in New Issue
Block a user