Home
last modified time | relevance | path

Searched refs:price_ht (Results 1 – 24 of 24) sorted by relevance

/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/cashdesk/
H A Dfacturation_verif.php133 if (!empty($price_ht)) {
134 $pu_ht = price2num($price_ht, 'MU');
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/cashdesk/
H A Dfacturation_verif.php143 if (!empty($price_ht)) {
144 $pu_ht = price2num($price_ht, 'MU');
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/install/mysql/tables/
H A Dllx_contratdet.sql49 price_ht real, -- prix final (obsolete) field
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/install/mysql/tables/
H A Dllx_contratdet.sql49 price_ht real, -- prix final (obsolete) field
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/contrat/class/
H A Dcontrat.class.php852 $line->price_ht = $objp->price_ht;
853 $line->price = $objp->price_ht; // For backward compatibility
2663 public $price_ht; variable in ContratLigne
2899 $this->price_ht = $obj->price_ht;
2957 $this->price_ht = price2num($this->price_ht);
2969 if (empty($this->price_ht)) $this->price_ht = 0;
2992 …$tabprice = calcul_price_total($this->qty, $this->price_ht, $this->remise_percent, $this->tva_tx, …
3040 $sql .= " price_ht=".($this->price_ht != '' ? $this->price_ht : "null").",";
3195 $sql .= " ".price2num($this->price_ht).",".price2num($this->remise).",";
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/contrat/class/
H A Dcontrat.class.php831 $line->price_ht = $objp->price_ht;
832 $line->price = $objp->price_ht; // For backward compatibility
2694 public $price_ht; variable in ContratLigne
2947 $this->price_ht = $obj->price_ht;
3005 $this->price_ht = price2num($this->price_ht);
3017 if (empty($this->price_ht)) {
3018 $this->price_ht = 0;
3062 …$tabprice = calcul_price_total($this->qty, $this->price_ht, $this->remise_percent, $this->tva_tx, …
3109 $sql .= " price_ht=".($this->price_ht != '' ? $this->price_ht : "null").",";
3258 $sql .= " ".price2num($this->price_ht).",".price2num($this->remise).",";
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/compta/facture/
H A Dcard-rec.php441 $price_ht = price2num(GETPOST('price_ht'), 'MU', 2); variable
468 if (empty($idprod) && ($price_ht < 0) && ($qty < 0)) {
476 …if ($prod_entry_mode == 'free' && empty($idprod) && (!($price_ht >= 0) || $price_ht == '')) // Un…
546 if (!empty($price_ht))
548 $pu_ht = price2num($price_ht, 'MU');
616 $pu_ht = price2num($price_ht, 'MU');
H A Dcard.php1901 $price_ht = price2num(GETPOST('price_ht'), 'MU', 2); variable
1927 if (empty($idprod) && ($price_ht < 0) && ($qty < 0)) {
1943 …e == 'free' && empty($idprod) && (($price_ht < 0 && empty($conf->global->FACTURE_ENABLE_NEGATIVE_L…
1945 if ($price_ht < 0 && empty($conf->global->FACTURE_ENABLE_NEGATIVE_LINES))
2033 if (!empty($price_ht) || $price_ht === '0')
2035 $pu_ht = price2num($price_ht, 'MU');
2110 $pu_ht = price2num($price_ht, 'MU');
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/compta/facture/
H A Dcard-rec.php425 $price_ht = price2num(GETPOST('price_ht'), 'MU', 2); variable
450 if ((empty($idprod) || $idprod < 0) && ($price_ht < 0) && ($qty < 0)) {
458 …entry_mode == 'free' && (empty($idprod) || $idprod < 0) && (!($price_ht >= 0) || $price_ht == ''))…
527 if (!empty($price_ht)) {
528 $pu_ht = price2num($price_ht, 'MU');
609 $pu_ht = price2num($price_ht, 'MU');
H A Dcard.php1977 $price_ht = price2num(GETPOST('price_ht'), 'MU', 2); variable
2002 if ((empty($idprod) || $idprod < 0) && ($price_ht < 0) && ($qty < 0)) {
2016 …mpty($idprod) || $idprod < 0) && (($price_ht < 0 && empty($conf->global->FACTURE_ENABLE_NEGATIVE_L…
2017 if ($price_ht < 0 && empty($conf->global->FACTURE_ENABLE_NEGATIVE_LINES)) {
2103 if (!empty($price_ht) || $price_ht === '0') {
2104 $pu_ht = price2num($price_ht, 'MU');
2195 $pu_ht = price2num($price_ht, 'MU');
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/supplier_proposal/
H A Dcard.php550 $price_ht = price2num(GETPOST('price_ht'), 'MU', 2); variable
554 $price_ht = price2num(GETPOST('price_ht'), 'MU', 2); variable
588 $pu_ht = price2num($price_ht, 'MU');
713 $pu_ht = price2num($price_ht, 'MU');
731 if ($price_ht !== '')
733 $pu_ht = price2num($price_ht, 'MU'); // $pu_ht must be rounded according to settings
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/supplier_proposal/
H A Dcard.php532 $price_ht = price2num(GETPOST('price_ht'), 'MU', 2); variable
536 $price_ht = price2num(GETPOST('price_ht'), 'MU', 2); variable
569 $pu_ht = price2num($price_ht, 'MU');
694 $pu_ht = price2num($price_ht, 'MU');
712 if ($price_ht !== '') {
713 $pu_ht = price2num($price_ht, 'MU'); // $pu_ht must be rounded according to settings
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/commande/
H A Dcard.php635 $price_ht = price2num(GETPOST('price_ht'), 'MU', 2); variable
664 if (empty($idprod) && ($price_ht < 0) && ($qty < 0)) {
672 …if ($prod_entry_mode == 'free' && empty($idprod) && $price_ht == '' && $price_ht_devise == '') //…
818 if (!empty($price_ht) || $price_ht === '0') {
819 $pu_ht = price2num($price_ht, 'MU');
892 $pu_ht = price2num($price_ht, 'MU');
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/commande/
H A Dcard.php620 $price_ht = price2num(GETPOST('price_ht'), 'MU', 2); variable
649 if ((empty($idprod) || $idprod < 0) && ($price_ht < 0) && ($qty < 0)) {
657 …if ($prod_entry_mode == 'free' && (empty($idprod) || $idprod < 0) && $price_ht == '' && $price_ht_…
800 if (!empty($price_ht) || $price_ht === '0') {
801 $pu_ht = price2num($price_ht, 'MU');
891 $pu_ht = price2num($price_ht, 'MU');
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/fourn/commande/
H A Dcard.php366 $price_ht = price2num(GETPOST('price_ht'), 'MU', 2); variable
370 $price_ht = price2num(GETPOST('price_ht'), 'MU', 2); variable
490 if ($price_ht != '' || $price_ht_devise != '') {
492 $pu = price2num($price_ht, 'MU');
575 if ($price_ht !== '')
577 $pu_ht = price2num($price_ht, 'MU'); // $pu_ht must be rounded according to settings
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/fourn/commande/
H A Dcard.php389 $price_ht = price2num(GETPOST('price_ht'), 'MU', 2); variable
393 $price_ht = price2num(GETPOST('price_ht'), 'MU', 2); variable
516 if ($price_ht != '' || $price_ht_devise != '') {
518 $pu = price2num($price_ht, 'MU');
602 if ($price_ht !== '') {
603 $pu_ht = price2num($price_ht, 'MU'); // $pu_ht must be rounded according to settings
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/comm/propal/
H A Dcard.php821 $price_ht = price2num(GETPOST('price_ht'), 'MU', 2); variable
853 …if ($prod_entry_mode == 'free' && empty($idprod) && $price_ht === '' && $price_ht_devise === '') …
995 if (!empty($price_ht) || $price_ht === '0') {
996 $pu_ht = price2num($price_ht, 'MU');
1081 $pu_ht = price2num($price_ht, 'MU');
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/comm/propal/
H A Dcard.php818 $price_ht = price2num(GETPOST('price_ht'), 'MU', 2); variable
851 …if ($prod_entry_mode == 'free' && (empty($idprod) || $idprod < 0) && $price_ht === '' && $price_ht…
995 if (!empty($price_ht) || $price_ht === '0') {
996 $pu_ht = price2num($price_ht, 'MU');
1098 $pu_ht = price2num($price_ht, 'MU');
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/fourn/facture/
H A Dcard.php1190 $price_ht = price2num(GETPOST('price_ht'), 'MU', 2); variable
1194 $price_ht = price2num(GETPOST('price_ht'), 'MU', 2); variable
1301 $pu = price2num($price_ht, 'MU');
1383 $pu_ht = price2num($price_ht, 'MU'); // $pu_ht must be rounded according to settings
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/fourn/facture/
H A Dcard.php1341 $price_ht = price2num(GETPOST('price_ht'), 'MU', 2); variable
1345 $price_ht = price2num(GETPOST('price_ht'), 'MU', 2); variable
1454 $pu = price2num($price_ht, 'MU');
1537 $pu_ht = price2num($price_ht, 'MU'); // $pu_ht must be rounded according to settings
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/product/class/
H A Dproduct.class.php592 $price_ht = 0;
600 $price_ht = price2num($this->price_ttc / (1 + ($this->tva_tx / 100)), 'MU');
605 $price_ht = price2num($this->price, 'MU');
722 $sql .= ", ".price2num($price_ht);
749 $this->price = $price_ht;
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/product/class/
H A Dproduct.class.php543 $price_ht = 0;
551 $price_ht = price2num($this->price_ttc / (1 + ($this->tva_tx / 100)), 'MU');
556 $price_ht = price2num($this->price, 'MU');
671 $sql .= ", ".price2num($price_ht);
695 $this->price = $price_ht;
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/contrat/
H A Dcard.php387 $price_ht = price2num(GETPOST('price_ht'), 'MU', 2); variable
673 $objectline->price_ht = GETPOST('elprice');
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/contrat/
H A Dcard.php372 $price_ht = price2num(GETPOST('price_ht'), 'MU', 2); variable
666 $objectline->price_ht = price2num(GETPOST('elprice'), 'MU');