本文整理汇总了PHP中FactureFournisseur::set_ref_supplier方法的典型用法代码示例。如果您正苦于以下问题:PHP FactureFournisseur::set_ref_supplier方法的具体用法?PHP FactureFournisseur::set_ref_supplier怎么用?PHP FactureFournisseur::set_ref_supplier使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FactureFournisseur
的用法示例。
在下文中一共展示了FactureFournisseur::set_ref_supplier方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: FactureFournisseur
}
}
if ($_REQUEST['action'] == 'confirm_paid' && $_REQUEST['confirm'] == 'yes' && $user->rights->fournisseur->facture->creer)
{
$facturefourn=new FactureFournisseur($db);
$facturefourn->fetch($_GET['facid']);
$result=$facturefourn->set_paid($user);
}
// Set supplier ref
if (($_POST['action'] == 'setref_supplier' || $_POST['action'] == 'set_ref_supplier') && $user->rights->fournisseur->facture->creer)
{
$facturefourn = new FactureFournisseur($db);
$facturefourn->fetch($facid);
$result=$facturefourn->set_ref_supplier($user, $_POST['ref_supplier']);
$_GET['facid']=$facid;
}
// Set supplier ref
if (($_POST['action'] == 'setlabel') && $user->rights->fournisseur->facture->creer)
{
$facturefourn = new FactureFournisseur($db);
$facturefourn->fetch($facid);
$facturefourn->label=$_POST['label'];
$result=$facturefourn->update($user);
if ($result < 0) dol_print_error($db);
$_GET['facid']=$facid;
}
if($_GET['action'] == 'deletepaiement')
示例2: elseif
}
} elseif ($action == 'confirm_deleteline' && $confirm == 'yes' && $user->rights->fournisseur->facture->creer) {
$object->fetch($id);
$ret = $object->deleteline(GETPOST('lineid'));
if ($ret > 0) {
Header('Location: ' . $_SERVER["PHP_SELF"] . '?id=' . $id);
exit;
} else {
$mesg = '<div class="error">' . $object->error . '</div>';
}
} elseif ($action == 'confirm_paid' && $confirm == 'yes' && $user->rights->fournisseur->facture->creer) {
$object->fetch($id);
$result = $object->set_paid($user);
} elseif ($action == 'setfacnumber' && $user->rights->fournisseur->facture->creer) {
$object->fetch($id);
$result = $object->set_ref_supplier($user, GETPOST('facnumber'));
} elseif ($action == 'setlabel' && $user->rights->fournisseur->facture->creer) {
$object->fetch($id);
$object->label = $_POST['label'];
$result = $object->update($user);
if ($result < 0) {
dol_print_error($db);
}
} elseif ($action == 'setdatef' && $user->rights->fournisseur->facture->creer) {
$object->fetch($id);
$object->date = dol_mktime(12, 0, 0, $_POST['datefmonth'], $_POST['datefday'], $_POST['datefyear']);
if ($object->date_echeance < $object->date) {
$object->date_echeance = $object->date;
}
$result = $object->update($user);
if ($result < 0) {