dolibarr 19.0.3
|
Class of numbering module Terre for invoices. More...
Public Member Functions | |
__construct () | |
Constructor. | |
info ($langs) | |
Returns the description of the numbering model. | |
getExample () | |
Return an example of numbering. | |
canBeActivated ($object) | |
Checks if the numbers already in the database do not cause conflicts that would prevent this numbering working. | |
getNextValue ($objsoc, $invoice, $mode='next') | |
Return next value not used or last value used. | |
getNumRef ($objsoc, $objforref, $mode='next') | |
Return next free value. | |
Public Member Functions inherited from CommonNumRefGenerator | |
getNom ($langs) | |
Return model name TODO Replace with getName() | |
getName ($langs) | |
Return model name. | |
isEnabled () | |
Return if a module can be used or not. | |
getVersion () | |
Returns version of numbering module. | |
Class of numbering module Terre for invoices.
Definition at line 31 of file mod_facture_terre.php.
mod_facture_terre::canBeActivated | ( | $object | ) |
Checks if the numbers already in the database do not cause conflicts that would prevent this numbering working.
Object | $object | Object we need next value for |
Reimplemented from CommonNumRefGenerator.
Definition at line 118 of file mod_facture_terre.php.
mod_facture_terre::getExample | ( | ) |
Return an example of numbering.
Definition at line 106 of file mod_facture_terre.php.
mod_facture_terre::getNextValue | ( | $objsoc, | |
$invoice, | |||
$mode = 'next' ) |
Return next value not used or last value used.
Note to increase perf of this numbering engine, you can create a calculated column and modify request to use this field instead for select: ALTER TABLE llx_facture ADD COLUMN calculated_numrefonly INTEGER AS (CASE SUBSTRING(ref FROM 1 FOR 2) WHEN 'FA' THEN CAST(SUBSTRING(ref FROM 10) AS SIGNED) ELSE 0 END) PERSISTENT; ALTER TABLE llx_facture ADD INDEX calculated_numrefonly_idx (calculated_numrefonly);
Societe | $objsoc | Object third party |
Facture | $invoice | Object invoice |
string | $mode | 'next' for next value or 'last' for last value |
Definition at line 206 of file mod_facture_terre.php.
References dol_print_error(), and dol_syslog().
Referenced by getNumRef().
mod_facture_terre::getNumRef | ( | $objsoc, | |
$objforref, | |||
$mode = 'next' ) |
Return next free value.
Societe | $objsoc | Object third party |
string | $objforref | Object for number to search |
string | $mode | 'next' for next value or 'last' for last value |
Definition at line 290 of file mod_facture_terre.php.
References getNextValue().
mod_facture_terre::info | ( | $langs | ) |
Returns the description of the numbering model.
Translate | $langs | Lang object to use for output |
Reimplemented from CommonNumRefGenerator.
Definition at line 94 of file mod_facture_terre.php.