當前位置: 首頁>>代碼示例>>PHP>>正文


PHP FormOther::select_revenue_stamp方法代碼示例

本文整理匯總了PHP中FormOther::select_revenue_stamp方法的典型用法代碼示例。如果您正苦於以下問題:PHP FormOther::select_revenue_stamp方法的具體用法?PHP FormOther::select_revenue_stamp怎麽用?PHP FormOther::select_revenue_stamp使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在FormOther的用法示例。


在下文中一共展示了FormOther::select_revenue_stamp方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: price

 // Revenue stamp
 if ($selleruserevenustamp) {
     print '<tr><td>';
     print '<table class="nobordernopadding" width="100%"><tr><td>';
     print $langs->trans('RevenueStamp');
     print '</td>';
     if ($action != 'editrevenuestamp' && !empty($object->brouillon) && $user->rights->facture->creer) {
         print '<td align="right"><a href="' . $_SERVER["PHP_SELF"] . '?action=editrevenuestamp&amp;facid=' . $object->id . '">' . img_edit($langs->trans('SetRevenuStamp'), 1) . '</a></td>';
     }
     print '</tr></table>';
     print '</td><td colspan="3">';
     if ($action == 'editrevenuestamp') {
         print '<form action="' . $_SERVER["PHP_SELF"] . '?id=' . $object->id . '" method="post">';
         print '<input type="hidden" name="token" value="' . $_SESSION['newtoken'] . '">';
         print '<input type="hidden" name="action" value="setrevenuestamp">';
         print $formother->select_revenue_stamp(GETPOST('revenuestamp'), 'revenuestamp', $mysoc->country_code);
         // print '<input type="text" class="flat" size="4" name="revenuestamp" value="'.price2num($object->revenuestamp).'">';
         print ' <input type="submit" class="button" value="' . $langs->trans('Modify') . '">';
         print '</form>';
     } else {
         print price($object->revenuestamp, 1, '', 1, -1, -1, $conf->currency);
     }
     print '</td></tr>';
 }
 // Total with tax
 print '<tr><td>' . $langs->trans('AmountTTC') . '</td><td colspan="3" class="nowrap">' . price($object->total_ttc, 1, '', 1, -1, -1, $conf->currency) . '</td></tr>';
 // Statut
 print '<tr><td>' . $langs->trans('Status') . '</td>';
 print '<td colspan="3">' . $object->getLibStatut(4, $totalpaye) . '</td></tr>';
 // Project
 if (!empty($conf->projet->enabled)) {
開發者ID:Samara94,項目名稱:dolibarr,代碼行數:31,代碼來源:facture.php


注:本文中的FormOther::select_revenue_stamp方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。