doxygen
This commit is contained in:
parent
968c9ae874
commit
e078bc6f83
@ -2804,15 +2804,70 @@ class SupplierInvoiceLine extends CommonObjectLine
|
|||||||
*/
|
*/
|
||||||
public $fk_prev_id;
|
public $fk_prev_id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* VAT code
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $vat_src_code;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* VAT %
|
||||||
|
* @var float
|
||||||
|
*/
|
||||||
public $tva_tx;
|
public $tva_tx;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Local tax 1 %
|
||||||
|
* @var float
|
||||||
|
*/
|
||||||
public $localtax1_tx;
|
public $localtax1_tx;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Local tax 2 %
|
||||||
|
* @var float
|
||||||
|
*/
|
||||||
public $localtax2_tx;
|
public $localtax2_tx;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Quantity
|
||||||
|
* @var double
|
||||||
|
*/
|
||||||
public $qty;
|
public $qty;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Percent of discount
|
||||||
|
* @var float
|
||||||
|
*/
|
||||||
public $remise_percent;
|
public $remise_percent;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Total amount without taxes
|
||||||
|
* @var float
|
||||||
|
*/
|
||||||
public $total_ht;
|
public $total_ht;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Total amount with taxes
|
||||||
|
* @var float
|
||||||
|
*/
|
||||||
public $total_ttc;
|
public $total_ttc;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Total amount of taxes
|
||||||
|
* @var float
|
||||||
|
*/
|
||||||
public $total_tva;
|
public $total_tva;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Total local tax 1 amount
|
||||||
|
* @var float
|
||||||
|
*/
|
||||||
public $total_localtax1;
|
public $total_localtax1;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Total local tax 2 amount
|
||||||
|
* @var float
|
||||||
|
*/
|
||||||
public $total_localtax2;
|
public $total_localtax2;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -2820,8 +2875,24 @@ class SupplierInvoiceLine extends CommonObjectLine
|
|||||||
*/
|
*/
|
||||||
public $fk_product;
|
public $fk_product;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Type of the product. 0 for product 1 for service
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
public $product_type;
|
public $product_type;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Label of the product
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
public $product_label;
|
public $product_label;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* List of cumulative options:
|
||||||
|
* Bit 0: 0 si TVA normal - 1 si TVA NPR
|
||||||
|
* Bit 1: 0 si ligne normal - 1 si bit discount (link to line into llx_remise_except)
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
public $info_bits;
|
public $info_bits;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -2830,8 +2901,22 @@ class SupplierInvoiceLine extends CommonObjectLine
|
|||||||
public $fk_parent_line;
|
public $fk_parent_line;
|
||||||
|
|
||||||
public $special_code;
|
public $special_code;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int rank of line
|
||||||
|
*/
|
||||||
public $rang;
|
public $rang;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Total local tax 1 amount
|
||||||
|
* @var float
|
||||||
|
*/
|
||||||
public $localtax1_type;
|
public $localtax1_type;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Total local tax 2 amount
|
||||||
|
* @var float
|
||||||
|
*/
|
||||||
public $localtax2_type;
|
public $localtax2_type;
|
||||||
|
|
||||||
// Multicurrency
|
// Multicurrency
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user