Fix missing fields
This commit is contained in:
parent
0962c79c3e
commit
0f90cee597
@ -933,6 +933,9 @@ abstract class CommonInvoiceLine extends CommonObjectLine
|
|||||||
*/
|
*/
|
||||||
public $total_ttc;
|
public $total_ttc;
|
||||||
|
|
||||||
|
public $date_start_fill; // If set to 1, when invoice is created from a template invoice, it will also auto set the field date_start at creation
|
||||||
|
public $date_end_fill; // If set to 1, when invoice is created from a template invoice, it will also auto set the field date_end at creation
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* List of cumulative options:
|
* List of cumulative options:
|
||||||
* Bit 0: 0 si TVA normal - 1 si TVA NPR
|
* Bit 0: 0 si TVA normal - 1 si TVA NPR
|
||||||
@ -941,17 +944,7 @@ abstract class CommonInvoiceLine extends CommonObjectLine
|
|||||||
*/
|
*/
|
||||||
public $info_bits = 0;
|
public $info_bits = 0;
|
||||||
|
|
||||||
public $date_start_fill; // If set to 1, when invoice is created from a template invoice, it will also auto set the field date_start at creation
|
public $special_code = 0;
|
||||||
public $date_end_fill; // If set to 1, when invoice is created from a template invoice, it will also auto set the field date_end at creation
|
|
||||||
|
|
||||||
|
public $fk_multicurrency;
|
||||||
/**
|
|
||||||
* Constructor
|
|
||||||
*
|
|
||||||
* @param DoliDB $db Database handler
|
|
||||||
*/
|
|
||||||
public function __construct(DoliDB $db)
|
|
||||||
{
|
|
||||||
$this->db = $db;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -157,4 +157,6 @@ abstract class CommonOrderLine extends CommonObjectLine
|
|||||||
public $info_bits = 0;
|
public $info_bits = 0;
|
||||||
|
|
||||||
public $special_code = 0;
|
public $special_code = 0;
|
||||||
|
|
||||||
|
public $fk_multicurrency;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user