本文整理汇总了PHP中Purchase::getCurrency方法的典型用法代码示例。如果您正苦于以下问题:PHP Purchase::getCurrency方法的具体用法?PHP Purchase::getCurrency怎么用?PHP Purchase::getCurrency使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Purchase
的用法示例。
在下文中一共展示了Purchase::getCurrency方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: strtoupper
?>
<br />
<label for="doc_type">Document Type </label>
<?php
echo strtoupper($purchase->prepareDocTag()) . $purchase->prepareDocType();
?>
<br />
<label for="branch_id">Branch </label>
<?php
$branch = new Branch($purchase->getBranchId());
echo $branch->prepareName() . " / " . $purchase->prepareBranchId();
?>
<br />
<label for="currency_id">Currency </label>
<?php
$currency = new Currency($purchase->getCurrency());
echo $currency->prepareCountry() . " [" . $currency->prepareExchange(2) . "]";
?>
<div class="supplierBox span-23 last">
<div id="box1" class="boxes span-7">
<b>Supplier 1</b><br />
<?php
$supplier = new Supplier($purchase->getSupplier1());
echo $supplier->prepareName();
?>
<br />
<div class="boxBody">
<?php
Supplier::generateInfo($purchase->getSupplier1());
?>
</div>
示例2: catch
$purchase_detail = new Purchase_detail();
} else {
$purchase_detail = new Purchase_detail($row->{'detailId'});
}
$purchase_detail->setDocNumber($key);
$purchase_detail->setItemId($row->{'itemCode'});
$purchase_detail->setDescription($row->{'itemDesc'});
$purchase_detail->setQuantity($row->{'itemQuan'});
$purchase_detail->setUnitPrice($row->{'itemUnitP'});
$extendedPrice = $row->{'itemQuan'} * $row->{'itemUnitP'};
$total = $total + $extendedPrice;
$purchase_detail->setExtendedPrice(round($extendedPrice, 2));
//$purchase_detail->setExtendedPrice($row->{'itemExtP'});
if ($_POST['approver_1'] != null && $_POST['approver_1_date'] != null) {
$item = new Inv_item($row->{'itemCode'});
$item->setCurrencyId($purchase->getCurrency());
$item->setRate($row->{'itemUnitP'});
$item->store();
}
if (!$error) {
$purchase_detail->store();
}
} catch (fExpectedException $e) {
echo $e->printMessage();
$error = true;
}
}
if (!$error) {
$total = $total - $_POST['discount'];
$purchase->setTotal(round($total, 2));
$purchase->store();