Home
last modified time | relevance | path

Searched refs:nb_gen_max (Results 1 – 18 of 18) sorted by relevance

/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/fichinter/
H A Dcard-rec.php117 $nb_gen_max = (GETPOST('nb_gen_max', 'int') ?GETPOST('nb_gen_max', 'int') : 0); variable
124 if ($nb_gen_max === '') {
141 $object->nb_gen_max = $nb_gen_max;
619 …print $form->editfieldkey($langs->trans("MaxPeriodNumber"), 'nb_gen_max', $object->nb_gen_max, $ob…
624 …al($langs->trans("MaxPeriodNumber"), 'nb_gen_max', $object->nb_gen_max ? $object->nb_gen_max : '',…
827 print $objp->nb_gen_done.($objp->nb_gen_max > 0 ? ' / '.$objp->nb_gen_max : '');
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/fichinter/
H A Dcard-rec.php126 $nb_gen_max = (GETPOST('nb_gen_max', 'int') ?GETPOST('nb_gen_max', 'int') : 0); variable
133 if ($nb_gen_max === '') {
150 $object->nb_gen_max = $nb_gen_max;
636 …print $form->editfieldkey($langs->trans("MaxPeriodNumber"), 'nb_gen_max', $object->nb_gen_max, $ob…
643 …al($langs->trans("MaxPeriodNumber"), 'nb_gen_max', $object->nb_gen_max ? $object->nb_gen_max : '',…
866 print $objp->nb_gen_done.($objp->nb_gen_max > 0 ? ' / '.$objp->nb_gen_max : '');
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/fichinter/class/
H A Dfichinterrec.class.php87 public $nb_gen_max; variable in FichinterRec
209 $sql .= ", ".$this->nb_gen_max;
313 $this->nb_gen_max = $obj->nb_gen_max;
770 $this->nb_gen_max = $nb;
821 if ($this->nb_gen_max == $this->nb_gen_done + 1)
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/fichinter/class/
H A Dfichinterrec.class.php87 public $nb_gen_max; variable in FichinterRec
209 $sql .= ", ".$this->nb_gen_max;
317 $this->nb_gen_max = $obj->nb_gen_max;
792 $this->nb_gen_max = $nb;
843 if ($this->nb_gen_max == $this->nb_gen_done + 1) {
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/install/mysql/tables/
H A Dllx_fichinter_rec.sql45 nb_gen_max integer DEFAULT NULL, -- maximum number of generation field
H A Dllx_facture_rec.sql73 nb_gen_max integer DEFAULT NULL, -- maximum number of generation field
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/install/mysql/tables/
H A Dllx_fichinter_rec.sql45 nb_gen_max integer DEFAULT NULL, -- maximum number of generation field
H A Dllx_facture_rec.sql73 nb_gen_max integer DEFAULT NULL, -- maximum number of generation field
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/compta/facture/
H A Dcard-rec.php172 $nb_gen_max = GETPOST('nb_gen_max', 'int'); variable
183 if ($nb_gen_max === '')
202 $object->nb_gen_max = $nb_gen_max;
1380 $substitutionarray['__INVOICE_COUNTER_MAX__'] = $object->nb_gen_max;
1527 …print $form->editfieldkey($langs->trans("MaxPeriodNumber"), 'nb_gen_max', $object->nb_gen_max, $ob…
1534 …al($langs->trans("MaxPeriodNumber"), 'nb_gen_max', $object->nb_gen_max ? $object->nb_gen_max : '',…
1667 …if (!empty($object->frequency) && $object->nb_gen_max > 0 && ($object->nb_gen_done >= $object->nb_…
H A Dinvoicetemplate_list.php518 $invoicerectmp->nb_gen_max = $objp->nb_gen_max;
592 …rint ($objp->frequency > 0 ? $objp->nb_gen_done.($objp->nb_gen_max > 0 ? ' / '.$objp->nb_gen_max :…
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/compta/facture/
H A Dinvoicetemplate_list.php654 $invoicerectmp->nb_gen_max = $objp->nb_gen_max;
746 …rint ($objp->frequency > 0 ? $objp->nb_gen_done.($objp->nb_gen_max > 0 ? ' / '.$objp->nb_gen_max :…
H A Dcard-rec.php187 $nb_gen_max = GETPOST('nb_gen_max', 'int'); variable
213 $object->nb_gen_max = $nb_gen_max;
1373 $substitutionarray['__INVOICE_COUNTER_MAX__'] = $object->nb_gen_max;
1516 …print $form->editfieldkey($langs->trans("MaxPeriodNumber"), 'nb_gen_max', $object->nb_gen_max, $ob…
1522 …al($langs->trans("MaxPeriodNumber"), 'nb_gen_max', $object->nb_gen_max ? $object->nb_gen_max : '',…
1651 …if (!empty($object->frequency) && $object->nb_gen_max > 0 && ($object->nb_gen_done >= $object->nb_…
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/compta/facture/class/
H A Dfacture-rec.class.php93 public $nb_gen_max; variable in FactureRec
232 $this->nb_gen_max = empty($this->nb_gen_max) ? 0 : $this->nb_gen_max;
295 $sql .= ", ".$this->db->escape($this->nb_gen_max);
576 $this->nb_gen_max = $obj->nb_gen_max;
1173 if ($this->nb_gen_max > 0 && ($this->nb_gen_done >= $this->nb_gen_max)) $ret = true;
1798 $this->nb_gen_max = $nb;
H A Dfacture.class.php574 $substitutionarray['__INVOICE_COUNTER_MAX__'] = $_facrec->nb_gen_max;
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/compta/facture/class/
H A Dfacture-rec.class.php104 public $nb_gen_max; variable in FactureRec
260 $this->nb_gen_max = empty($this->nb_gen_max) ? 0 : $this->nb_gen_max;
322 $sql .= ", ".$this->db->escape($this->nb_gen_max);
585 $this->nb_gen_max = $obj->nb_gen_max;
1200 if ($this->nb_gen_max > 0 && ($this->nb_gen_done >= $this->nb_gen_max)) {
1826 $this->nb_gen_max = $nb;
H A Dfacture.class.php608 $substitutionarray['__INVOICE_COUNTER_MAX__'] = $_facrec->nb_gen_max;
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/install/mysql/migration/
H A D10.0.0-11.0.0.sql375 nb_gen_max integer DEFAULT NULL, -- maximum number of generation field
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/install/mysql/migration/
H A D10.0.0-11.0.0.sql375 nb_gen_max integer DEFAULT NULL, -- maximum number of generation field