Skip to content

Commit

Permalink
Update Cliente.php
Browse files Browse the repository at this point in the history
  • Loading branch information
gogl92 authored Mar 28, 2019
1 parent c57be7e commit 0d60609
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/models/Cliente.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class Cliente extends Model
public $cfdis;
/* Cuentas de Banco */
public $cuentas_banco = [];
public $UsoCFDI;

/**
* Cliente constructor.
Expand Down Expand Up @@ -115,7 +116,8 @@ public function rules()
'estado',
'ciudad',
'delegacion',
'localidad'
'localidad',
'UsoCFDI'
],
'string',
],
Expand Down Expand Up @@ -234,6 +236,11 @@ public function setCuentasBanco($cuentas_banco)
$this->cuentas_banco = $cuentas_banco;
}

public function setUsoCFDI($UsoCFDI)
{
$this->UsoCFDI = $UsoCFDI;
}

/**
* @param $contacto
*/
Expand All @@ -245,4 +252,4 @@ public function setContacto($contacto)
$this->telefono = $contacto['Telefono'];
}

}
}

0 comments on commit 0d60609

Please sign in to comment.