Fix missing fields

This commit is contained in:
Laurent Destailleur 2020-11-09 15:15:21 +01:00
parent 0962c79c3e
commit 0f90cee597
2 changed files with 7 additions and 12 deletions

View File

@ -933,6 +933,9 @@ abstract class CommonInvoiceLine extends CommonObjectLine
*/
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:
* Bit 0: 0 si TVA normal - 1 si TVA NPR
@ -941,17 +944,7 @@ abstract class CommonInvoiceLine extends CommonObjectLine
*/
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 $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 $special_code = 0;
/**
* Constructor
*
* @param DoliDB $db Database handler
*/
public function __construct(DoliDB $db)
{
$this->db = $db;
}
public $fk_multicurrency;
}

View File

@ -157,4 +157,6 @@ abstract class CommonOrderLine extends CommonObjectLine
public $info_bits = 0;
public $special_code = 0;
public $fk_multicurrency;
}