#161refactoring
@@ -19,7 +19,7 @@ use Yii; | |||
* @property string $city | |||
* @property string $postcode | |||
*/ | |||
class DeliveryNote extends ActiveRecordCommon | |||
class DeliveryNote extends Document | |||
{ | |||
/** | |||
* @inheritdoc |
@@ -0,0 +1,12 @@ | |||
<?php | |||
/* | |||
* To change this license header, choose License Headers in Project Properties. | |||
* To change this template file, choose Tools | Templates | |||
* and open the template in the editor. | |||
*/ | |||
class Document extends ActiveRecordCommon | |||
{ | |||
} |
@@ -18,7 +18,7 @@ use Yii; | |||
* @property string $city | |||
* @property string $postcode | |||
*/ | |||
class Invoice extends ActiveRecordCommon | |||
class Invoice extends Document | |||
{ | |||
/** | |||
* @inheritdoc |
@@ -17,7 +17,7 @@ use Yii; | |||
* @property string $city | |||
* @property string $postcode | |||
*/ | |||
class Quotation extends ActiveRecordCommon | |||
class Quotation extends Document | |||
{ | |||
/** | |||
* @inheritdoc |