</span>
		<br />
		<label for="doc_date">Document Date </label>
			<span id="doc_date"><?php 
        echo $purchase->prepareDocDate("j F Y");
        ?>
</span><br />
		<label for="doc_type">Document Type </label>
			<?php 
        echo strtoupper($purchase->prepareDocTag()) . $purchase->prepareDocType();
        ?>
<br />
		<label for="branch_id">Ship To Branch </label>
			<select type="text" name="branch_id" id="branch_id" style="display: inline;"><?php 
        $user = new User(fAuthorization::getUserToken());
        Branch::findAllOption($purchase->prepareBranchId());
        ?>
</select>
			<span id="branch_view" class="tochange"><?php 
        $branch = new Branch($purchase->getBranchId());
        echo $branch->prepareName() . " / " . $purchase->prepareBranchId();
        ?>
</span><br />
		<label for="currency_id">Currency </label>
			<select type="text" name="currency_id" id="currency_id" style="display: inline;"></select>
			<span id="currency_view" class="tochange"><?php 
        $currency = new Currency($purchase->getCurrency());
        echo $currency->prepareCountry() . " [" . $currency->prepareExchange(2) . "]";
        ?>
</span>
		<div class="supplierBox span-23 last">
</span>
		<br />
		<label for="doc_date">Document Date </label>
			<?php 
        echo $purchase->prepareDocDate("j F Y");
        ?>
<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 />
	<?php 
} else {
    if (Good_receipt_note::findStatus($_GET['id'])) {
        try {
            echo "<input type=\"hidden\" id=\"prNum\" value=\"" . Purchase::getByPoNumber($_GET['id']) . "\" />";
            $purchase = new Purchase(Purchase::getByPoNumber($_GET['id']));
            ?>
	<div class="form-frame span-23 last">
		<h3>Goods Receipt Note</h3><br />
		<input type="hidden" name="run_num" value="" id="run_num"/>
		<label for="doc_num">Document Number </label><input type="text" name="doc_num" value="" id="doc_num"/><br />
		<label for="doc_date">Document Date </label><input type="text" name="doc_date" value="" id="doc_date" class="datepicker"/><br />
		<label for="doc_type">Document Type </label>GRN <input id="doc_type" type="hidden" value="GRN"></input><br />
		<label for="branch_id">Branch </label>
			<span><?php 
            $branchname = new Branch($purchase->prepareBranchId());
            echo $branchname->prepareName();
            ?>
</span>
			<input type="hidden" name="branch_id" id="branch_id" value="<?php 
            echo $purchase->prepareBranchId();
            ?>
"/>
		<div class="supplierBox span-23 last">
			<div id="box1" class="boxes span-7">
				<b>Supplier</b><br />
					<?php 
            $supplier = new Supplier($purchase->getSupplier1());
            echo $supplier->prepareName();
            ?>
					<input type="hidden" id="supplierID" value="<?php