本文整理汇总了PHP中Contrat::update方法的典型用法代码示例。如果您正苦于以下问题:PHP Contrat::update方法的具体用法?PHP Contrat::update怎么用?PHP Contrat::update使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Contrat
的用法示例。
在下文中一共展示了Contrat::update方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: GETPOST
$contrat->fetch($id);
$contrat->local_id = GETPOST("local_id");
$contrat->locataire_id = GETPOST("locataire_id");
$contrat->date_entree = $datect;
$contrat->preavis = GETPOST('preavis');
$contrat->date_fin_preavis = $datectend;
$contrat->montant_tot = GETPOST("montant_tot");
$contrat->loy = GETPOST("loy");
$contrat->charges = GETPOST("charges");
$contrat->tva = GETPOST("tva");
$contrat->periode = GETPOST("periode");
$contrat->depot = GETPOST("depot");
$contrat->commentaire = GETPOST("commentaire");
$contrat->proprietaire_id = GETPOST("proprietaire_id");
$e_contrat = $contrat;
$res = $contrat->update();
if ($res >= 0) {
setEventMessage($langs->trans("SocialContributionAdded"), 'mesgs');
} else {
setEventMessage($contrat->error, 'errors');
}
header("Location: " . DOL_URL_ROOT . "/immobilier/contrat/fiche_contrat.php?id=" . $contrat->id);
}
}
/*
* View
*
*/
if (GETPOST("action") == 'create') {
llxheader('', $langs->trans("addcontrat"), '');
$nbligne = 0;