[Qual] Cleanup of inherited class properties

This commit is contained in:
Raphaël Doursenaud
2015-09-24 20:12:55 +02:00
parent ea7384cf68
commit 67ddb6c94e
68 changed files with 9 additions and 672 deletions

View File

@@ -131,6 +131,7 @@ abstract class CommonObject
public $thirdparty;
/**
* @deprecated
* @var Societe A related customer
* @see thirdparty
*/
public $client;
@@ -283,27 +284,27 @@ abstract class CommonObject
public $note;
/**
* @var float
* @var float Total amount before taxes
* @see update_price()
*/
public $total_ht;
/**
* @var float
* @var float Total VAT amount
* @see update_price()
*/
public $total_tva;
/**
* @var float
* @var float Total local tax 1 amount
* @see update_price()
*/
public $total_localtax1;
/**
* @var float
* @var float Total local tax 2 amount
* @see update_price()
*/
public $total_localtax2;
/**
* @var float
* @var float Total amount with taxes
* @see update_price()
*/
public $total_ttc;