?>
<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>
             $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();