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


PHP company::getName方法代码示例

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


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

示例1: printTR

 public function printTR()
 {
     echo '<tr>';
     $c = new company($this->id_company);
     $company = $c->getName();
     echo '<td>' . $this->name . '</td>';
     echo '<td>' . $company . '</td>';
     echo '<td>' . $this->nationality . '</td>';
     echo '<td>' . $this->mail . '</td>';
     echo '<td>' . $this->phone_number . '</td>';
     echo '<td><a href="../controller/viewCustomer.php?id=' . $this->id . '"><button class=""><span class=\'glyphicon glyphicon-cog\' aria-hidden=\'true\'></span></button></a></td>';
     echo '</tr>';
 }
开发者ID:JulienRst,项目名称:Biothys-Manager,代码行数:13,代码来源:customer.php

示例2: gmdate

        $sdateBilling = gmdate('d-m-y', $dateBilling);
        $sdatePaid = gmdate('d-m-y', $dateBilling + intval($billing_period) * 24 * 3600);
        $today = date('today');
        $today = strtotime($today);
        $customer = new company($order->getId_company());
        $employee = $order->getEmployee();
        if ($dateBilling == 0) {
            echo '<tr class="success">';
        } else {
            if ($today < $dateBilling + intval($billing_period) * 24 * 3600) {
                echo '<tr class="warning">';
            } else {
                echo '<tr class="danger">';
            }
        }
        echo '<td>' . $customer->getName() . '</td>';
        echo '<td>' . $employee->printLink() . '</td>';
        if ($dateBilling != 0) {
            echo '<td>' . $sdateBilling . '</td>';
            echo '<td>' . $sdatePaid . '</td>';
        } else {
            echo '<td>Pas encore renseigné</td>';
            echo '<td>Pas encore renseigné</td>';
        }
        echo '<td>' . number_format($order->getAlready_paid(), 2, ',', ' ') . ' €</td>';
        echo '<td>' . number_format($order->getPrice(), 2, ',', ' ') . ' €</td>';
        echo '<td><a href="viewOrder.php?id=' . $order->getId() . '"><button class="btn btn-primary"><span class="glyphicon glyphicon-cog" aria-hidden="true"></span></button></a></td>';
        echo '</tr>';
    }
    ?>
开发者ID:JulienRst,项目名称:Biothys-Manager,代码行数:30,代码来源:monitoring.php

示例3: PDF

    }
}
//récupération des textes
// /!\ Il faudra changer les textes en fonctions de langue que l'on rentre pour le client, mais la langue par défaut sera l'anglais /!\
//Pour le moment on met les allemands
$text_intro = "Sehr geehrte Damen und Herren, wir bedanken uns für Ihr Interesse und möchten Ihnen wie folgt anbieten:";
$text_fin = "Zahlungsbedingungen: " . $order->getDelayForDelivery() . " Tage netto \nDiesem Angebot liegen unsere allgemeinen Geschäftsbedingungen zugrunde. Wir halten uns bis 4 Wochen nach dem Ausstellungsdatum an das Angebot gebunden. Bitte beziehen Sie sich bei Ihrer Bestellung auf die Angebotsnummer in diesem Vorschlag. Nur so können wir Ihnen die hier angebotenen Preise einhalten. Alle Preise -sofern nicht anders ausgewiesen sind netto und ex works Werk Willstätt.";
$pdf = new PDF();
$pdf->AddPage();
$pdf->Image('../assets/datas/model-pdf.png', 0, 0, $pdf->w, $pdf->h, 'png');
//Marge top
$pdf->SetFont('Arial', 'U', 6);
$pdf->Cell(0, 40, '', 0, 1);
$pdf->Cell(0, 5, utf8_decode('Biothys GmbH | Gewerbestr. 6 | D-77731 Willstätt'), 0, 1, 'L', false);
$pdf->SetFont('Arial', '', 10);
$pdf->Cell(0, 5, utf8_decode($company->getName()), 0, 1, 'L', false);
$pdf->Cell(0, 5, utf8_decode($receiving_address->getLine() . ' ' . $receiving_address->getComplement()), 0, 1, 'L', false);
$pdf->Cell(0, 5, utf8_decode($receiving_address->getZip() . ' ' . $receiving_address->getCity() . ' ' . $receiving_address->getCountry()), 0, 1, 'L', false);
//Marge left
$pdf->SetFont('Arial', 'B', 20);
$pdf->Cell(180, 15, utf8_decode('Invoice for samples'), 0, 1, 'R', false);
//Marge top
$pdf->Cell(0, 10, '', 0, 1);
//CellBorder//remplacer le ust-id quand il sera setup
$pdf->SetFont('Arial', 'B', 11);
$pdf->Cell(185, 21, '', 1);
$pdf->setX($pdf->GetX() - 185);
$pdf->setY($pdf->GetY() + 2);
$pdf->FirstTable(array(array(utf8_decode('n° :'), $id_document, date('d.m.y', $order->getDate_entry())), array('UST-ID :', $company->getUst_id(), $order->getEmployee()->getSurname() . ' ' . $order->getEmployee()->getName()), array('Your ID :', $company->getId(), '1/1')));
$pdf->SetFont('Arial', '', 8);
$pdf->setY($pdf->GetY() + 2);
开发者ID:JulienRst,项目名称:Biothys-Manager,代码行数:31,代码来源:PDFSamplesInvoice.php

示例4: json_encode

<?php

require_once '../model/company.php';
$idCo = $_GET['idCo'];
$idCu = $_GET['idCu'];
$customer = new customer($idCu);
$company = new company($idCo);
$customer->setId_company($idCo);
$customer->setToDatabase();
$result = array('idContact' => $idCo, 'contact' => $company->getName() . ' | ' . $company->getDescription());
echo json_encode($result);
开发者ID:JulienRst,项目名称:Biothys-Manager,代码行数:11,代码来源:setCustomerCompany.php


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