Ejemplo n.º 1
0
    echo "<br />";
}
if ($order_row->point_used_to_pay > 0) {
    echo '<strong>' . JText::_('POINTS') . ':</strong> ' . $order_row->point_used_to_pay;
}
?>
		
		</td>
	</tr>
	<tr>
		<td width="100" align="right" class="key" valign="top"><?php 
echo JText::_('ORDER_DELIVERY_DETAIL');
?>
</td>
		<td align="left"><?php 
echo EnmasseHelper::displayJson($order_row->delivery_detail);
?>
</td>
	</tr>
	<tr>
		<td width="100" align="right" class="key" valign="top"><?php 
echo JText::_('ORDER_STATUS');
?>
</td>
		<td>
			<input type="hidden" name="status" value="" />
			<div style="width: 80px;  line-height: 15px;">
				<b>
				<?php 
echo JText::_('ORDER_' . strtoupper($order_row->status));
?>
Ejemplo n.º 2
0
    ?>
		</td>
		<td>
			<?php 
    echo $row->qty;
    ?>
		</td>
		<td>
			<?php 
    echo EnmasseHelper::displayBuyer(json_decode($row->buyer_detail));
    ?>
		</td>
		<td nowrap="true">
			<?php 
    if (json_decode($row->pay_detail) != '') {
        echo EnmasseHelper::displayJson($row->pay_detail);
        echo "<br />";
    }
    if ($row->point_used_to_pay > 0) {
        echo '<strong>' . JText::_('POINTS') . ':</strong> ' . $row->point_used_to_pay;
    }
    ?>
	
		</td>
		<td align="center">
			<?php 
    if ($row->status == "Paid" && $row->total_buyer_paid > $row->paid_amount) {
        echo JText::_('ORDER_PARTIAL_PAID');
    } else {
        if ($row->status == "Paid" && $row->total_buyer_paid == $row->paid_amount) {
            echo JText::_('ORDER_FULL_PAID');
Ejemplo n.º 3
0
					<td valign="top"><?php 
echo JText::_('ORDER_REMAIN_AMOUNT');
?>
</td>
					<td><?php 
echo EnmasseHelper::displayCurrency($this->oOrder->total_buyer_paid - $this->oOrder->paid_amount);
?>
</td>
				</tr>
				<tr>
					<td valign="top"><?php 
echo JText::_('ORDER_DELIVERY');
?>
</td>
					<td><?php 
echo EnmasseHelper::displayJson($this->oOrder->delivery_detail);
?>
</td>
				</tr>
				<tr>
					<td valign="top"><?php 
echo JText::_('ORDER_DELIVERY_STATUS');
?>
</td>
					<td><?php 
echo JHtml::_('select.genericList', $dlvStatus, 'delivery_status', null, 'value', 'text', $this->oOrder->delivery_status, false, true);
?>
</td>
				</tr>
				<tr>
					<td valign="top"><?php 
Ejemplo n.º 4
0
</td>
		<td align="center">
			<a href="<?php 
    echo $link;
    ?>
"><?php 
    echo $row->name;
    ?>
</a>
		</td>
		<td align="center"><?php 
    echo $published;
    ?>
</td>
		<td align="left"><?php 
    echo EnmasseHelper::displayJson($row->attribute_config);
    ?>
		</td>
		<td><?php 
    echo DatetimeWrapper::getDisplayDatetime($row->updated_at);
    ?>
</td>
	</tr>
	<?php 
}
?>
</table>

<input type="hidden" name="option" value="<?php 
echo $option;
?>