Преглед изворни кода

Création de la classe Document parente de Invoice, Quotation et DeliveryNote

#161
refactoring
Guillaume Bourgeois пре 4 година
родитељ
комит
b31c536a4d
4 измењених фајлова са 15 додато и 3 уклоњено
  1. +1
    -1
      common/models/DeliveryNote.php
  2. +12
    -0
      common/models/Document.php
  3. +1
    -1
      common/models/Invoice.php
  4. +1
    -1
      common/models/Quotation.php

+ 1
- 1
common/models/DeliveryNote.php Прегледај датотеку

@@ -19,7 +19,7 @@ use Yii;
* @property string $city
* @property string $postcode
*/
class DeliveryNote extends ActiveRecordCommon
class DeliveryNote extends Document
{
/**
* @inheritdoc

+ 12
- 0
common/models/Document.php Прегледај датотеку

@@ -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
{
}

+ 1
- 1
common/models/Invoice.php Прегледај датотеку

@@ -18,7 +18,7 @@ use Yii;
* @property string $city
* @property string $postcode
*/
class Invoice extends ActiveRecordCommon
class Invoice extends Document
{
/**
* @inheritdoc

+ 1
- 1
common/models/Quotation.php Прегледај датотеку

@@ -17,7 +17,7 @@ use Yii;
* @property string $city
* @property string $postcode
*/
class Quotation extends ActiveRecordCommon
class Quotation extends Document
{
/**
* @inheritdoc

Loading…
Откажи
Сачувај