Skip to content

Commit

Permalink
bugs fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
gogl92 committed Mar 6, 2018
1 parent 131e817 commit 5c4a25f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/models/Conceptos.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public function rules()
*/
public static function tableName()
{
return '{{%items}}';
return '{{%conceptos}}';
}

/**
Expand Down
8 changes: 7 additions & 1 deletion src/models/Factura33.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,9 @@ class Factura33 extends ActiveRecord
/**
* @var array $CfdiRelacionados
*/
public $CfdiRelacionados;
public $relacionados = [

];
/**
* @var array $Emisor
*/
Expand All @@ -164,6 +166,10 @@ class Factura33 extends ActiveRecord
* @var Conceptos $Conceptos
*/
public $Conceptos = [];
/**
* @var array $Pagos
*/
public $Pagos = [];

use RelationTrait;

Expand Down

0 comments on commit 5c4a25f

Please sign in to comment.