本文整理汇总了PHP中Contrat::addline方法的典型用法代码示例。如果您正苦于以下问题:PHP Contrat::addline方法的具体用法?PHP Contrat::addline怎么用?PHP Contrat::addline使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Contrat
的用法示例。
在下文中一共展示了Contrat::addline方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
if($price_min && (price2num($pu_ht)*(1-price2num($_POST['remise_percent'])/100) < price2num($price_min)))
{
$object->error = $langs->trans("CantBeLessThanMinPrice",price2num($price_min,'MU').' '.$langs->trans("Currency".$conf->monnaie)) ;
$result = -1 ;
}
else
{
// Insert line
$result = $object->addline(
$desc,
$pu_ht,
$_POST["pqty"],
$tva_tx,
$localtax1_tx,
$localtax2_tx,
$_POST["idprod"],
$_POST["premise"],
$date_start,
$date_end,
$price_base_type,
$pu_ttc,
$info_bits
);
}
if ($result > 0)
{
/*
// Define output language
$outputlangs = $langs;
$newlang='';
示例2: Translate
}
if (!empty($newlang)) {
$outputlangs = new Translate("", $conf);
$outputlangs->setDefaultLang($newlang);
}
$label = !empty($prod->multilangs[$outputlangs->defaultlang]["libelle"]) ? $prod->multilangs[$outputlangs->defaultlang]["libelle"] : $lines[$i]->product_label;
} else {
$label = $lines[$i]->product_label;
}
if ($conf->global->PRODUIT_DESC_IN_FORM) {
$desc .= $lines[$i]->desc && $lines[$i]->desc != $lines[$i]->libelle ? dol_htmlentitiesbr($lines[$i]->desc) : '';
}
} else {
$desc = dol_htmlentitiesbr($lines[$i]->desc);
}
$result = $object->addline($desc, $lines[$i]->subprice, $lines[$i]->qty, $lines[$i]->tva_tx, $lines[$i]->localtax1_tx, $lines[$i]->localtax2_tx, $lines[$i]->fk_product, $lines[$i]->remise_percent, $lines[$i]->date_start, $lines[$i]->date_end, 'HT', 0, $lines[$i]->info_bits, $lines[$i]->fk_fournprice, $lines[$i]->pa_ht);
if ($result < 0) {
$error++;
break;
}
}
}
} else {
setEventMessage($srcobject->error, 'errors');
$error++;
}
} else {
setEventMessage($object->error, 'errors');
$error++;
}
} else {