mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
fix-warnings (#26500)
This commit is contained in:
parent
7f0da987a3
commit
00cbaa094c
|
|
@ -69,6 +69,21 @@ class DiscountAbsolute
|
|||
public $multicurrency_amount_tva; // deprecated
|
||||
public $multicurrency_amount_ttc; // deprecated
|
||||
|
||||
/**
|
||||
* @var double
|
||||
*/
|
||||
public $multicurrency_subprice;
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
public $fk_invoice_supplier;
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
public $fk_invoice_supplier_line;
|
||||
|
||||
// Vat rate
|
||||
public $tva_tx;
|
||||
public $vat_src_code;
|
||||
|
|
|
|||
|
|
@ -155,6 +155,16 @@ class dolReceiptPrinter extends Printer
|
|||
*/
|
||||
public $listprinterstemplates;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $profileresprint;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $resprint;
|
||||
|
||||
/**
|
||||
* @var string Error code (or message)
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -53,6 +53,18 @@ abstract class ModeleBarCode
|
|||
*/
|
||||
abstract class ModeleNumRefBarCode extends CommonNumRefGenerator
|
||||
{
|
||||
|
||||
/**
|
||||
* @var int Code facultatif
|
||||
*/
|
||||
public $code_null;
|
||||
|
||||
/**
|
||||
* @var int Automatic numbering
|
||||
*/
|
||||
public $code_auto;
|
||||
|
||||
|
||||
/**
|
||||
* Return next value available
|
||||
*
|
||||
|
|
|
|||
|
|
@ -59,6 +59,13 @@ class BordereauChequeBlochet extends ModeleChequeReceipts
|
|||
*/
|
||||
public $account;
|
||||
|
||||
public $amount;
|
||||
public $date;
|
||||
public $nbcheque;
|
||||
public $ref;
|
||||
public $ref_ext;
|
||||
|
||||
|
||||
/**
|
||||
* @var array lines
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -62,6 +62,10 @@ class pdf_espadon extends ModelePdfExpedition
|
|||
*/
|
||||
public $type;
|
||||
|
||||
public $posxweightvol;
|
||||
public $posxqtytoship;
|
||||
public $posxqtyordered;
|
||||
|
||||
/**
|
||||
* Dolibarr version of the loaded document
|
||||
* @var string
|
||||
|
|
|
|||
|
|
@ -62,6 +62,10 @@ class pdf_merou extends ModelePdfExpedition
|
|||
*/
|
||||
public $type;
|
||||
|
||||
public $destinataire;
|
||||
public $expediteur;
|
||||
public $livreur;
|
||||
|
||||
/**
|
||||
* Dolibarr version of the loaded document
|
||||
* @var string
|
||||
|
|
|
|||
|
|
@ -60,6 +60,25 @@ abstract class ModelePDFProduct extends CommonDocGenerator
|
|||
*/
|
||||
abstract class ModeleProductCode extends CommonNumRefGenerator
|
||||
{
|
||||
|
||||
/**
|
||||
* @var int Automatic numbering
|
||||
*/
|
||||
public $code_auto;
|
||||
|
||||
/**
|
||||
* @var string Editable code
|
||||
*/
|
||||
public $code_modifiable;
|
||||
|
||||
public $code_modifiable_invalide; // Modified code if it is invalid
|
||||
|
||||
/**
|
||||
* @var int Code facultatif
|
||||
*/
|
||||
public $code_null;
|
||||
|
||||
|
||||
/**
|
||||
* Return next value available
|
||||
*
|
||||
|
|
|
|||
|
|
@ -62,6 +62,11 @@ class pdf_timespent extends ModelePDFProjects
|
|||
*/
|
||||
public $type;
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
public $posxuser;
|
||||
|
||||
/**
|
||||
* Dolibarr version of the loaded document
|
||||
* @var string
|
||||
|
|
|
|||
|
|
@ -2901,6 +2901,12 @@ class SupplierProposalLine extends CommonObjectLine
|
|||
*/
|
||||
public $product_label;
|
||||
|
||||
/**
|
||||
* Custom label
|
||||
* @var string
|
||||
*/
|
||||
public $label;
|
||||
|
||||
/**
|
||||
* Product description
|
||||
* @var string
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user