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


PHP Purchase::getCurrency方法代码示例

本文整理汇总了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>
开发者ID:JhunCabas,项目名称:material-management,代码行数:31,代码来源:document-po-view.php

示例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();
开发者ID:JhunCabas,项目名称:material-management,代码行数:31,代码来源:Purchase.php


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