当前位置: 首页>>代码示例>>PHP>>正文


PHP Contrat::fetch_thirdparty方法代码示例

本文整理汇总了PHP中Contrat::fetch_thirdparty方法的典型用法代码示例。如果您正苦于以下问题:PHP Contrat::fetch_thirdparty方法的具体用法?PHP Contrat::fetch_thirdparty怎么用?PHP Contrat::fetch_thirdparty使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Contrat的用法示例。


在下文中一共展示了Contrat::fetch_thirdparty方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: ContratLigne

// Payment on contract line
if (GETPOST("source") == 'contractline' && $valid) {
    $found = true;
    $langs->load("contracts");
    require_once DOL_DOCUMENT_ROOT . '/contrat/class/contrat.class.php';
    $contractline = new ContratLigne($db);
    $result = $contractline->fetch('', $ref);
    if ($result < 0) {
        $mesg = $contractline->error;
        $error++;
    } else {
        if ($contractline->fk_contrat > 0) {
            $contract = new Contrat($db);
            $result = $contract->fetch($contractline->fk_contrat);
            if ($result > 0) {
                $result = $contract->fetch_thirdparty($contract->socid);
            } else {
                $mesg = $contract->error;
                $error++;
            }
        } else {
            $mesg = 'ErrorRecordNotFound';
            $error++;
        }
    }
    $amount = $contractline->total_ttc;
    if ($contractline->fk_product) {
        $product = new Product($db);
        $result = $product->fetch($contractline->fk_product);
        // We define price for product (TODO Put this in a method in product class)
        if (!empty($conf->global->PRODUIT_MULTIPRICES)) {
开发者ID:ADDAdev,项目名称:Dolibarr,代码行数:31,代码来源:newpayment.php

示例2: Form

 */
llxHeader('', $langs->trans("ContractCard"), "Contrat");
$form = new Form($db);
$formcompany = new FormCompany($db);
$contactstatic = new Contact($db);
$userstatic = new User($db);
dol_htmloutput_mesg($mesg);
/* *************************************************************************** */
/*                                                                             */
/* Mode vue et edition                                                         */
/*                                                                             */
/* *************************************************************************** */
if ($id > 0 || !empty($ref)) {
    if ($object->fetch($id, $ref) > 0) {
        dol_htmloutput_mesg($mesg);
        $object->fetch_thirdparty();
        $head = contract_prepare_head($object);
        $hselected = 1;
        dol_fiche_head($head, $hselected, $langs->trans("Contract"), 0, 'contract');
        /*
         *   Contrat
         */
        print '<table class="border" width="100%">';
        $linkback = '<a href="' . DOL_URL_ROOT . '/contrat/liste.php' . (!empty($socid) ? '?socid=' . $socid : '') . '">' . $langs->trans("BackToList") . '</a>';
        // Reference du contrat
        print '<tr><td width="25%">' . $langs->trans("Ref") . '</td><td colspan="3">';
        print $form->showrefnav($object, 'ref', $linkback, 1, 'ref', 'ref', '');
        print "</td></tr>";
        // Customer
        print "<tr><td>" . $langs->trans("Customer") . "</td>";
        print '<td colspan="3">' . $object->thirdparty->getNomUrl(1) . '</td></tr>';
开发者ID:LionSystemsSolutions,项目名称:El-Canelo-ERP,代码行数:31,代码来源:contact.php


注:本文中的Contrat::fetch_thirdparty方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。