Exemple #1
0
    echo $pendingOrder_id;
    ?>
" style="display:none">
                                                               <td colspan="6">
                                                                   <table width="30%">
                                                                       <tr>
                                                                           <th style="text-align: left">Item</th>
                                                                           <th>Quantity</th>
                                                                           <th>Price</th>
                                                                       </tr>
                                                                       <?php 
    foreach ($pendingOrder_itemList as $item) {
        ?>
                                                                       <tr>
                                                                            <td style="text-align: left"><?php 
        echo $productMgr->getProductSymbolCode($item['product_id']) . "-" . $productMgr->getAllColorOptionalCodeByProduct($item['product_id'])[$item['color']];
        ?>
</td>
                                                                            <td><?php 
        echo $item['quantity'];
        ?>
</td>
                                                                            <td><?php 
        echo number_format($item['price'], 2, '.', '');
        ?>
</td>
                                                                       </tr>
                                                                       <?php 
    }
    ?>
                                                                   </table>