<table>
                <colgroup>
                    <col class="grid_2">
                    <col>
                </colgroup>
                <tbody>
                <?php 
if ($od['od_invoice'] && $od['od_delivery_company']) {
    ?>
                <tr>
                    <th scope="row">배송회사</th>
                    <td><?php 
    echo $od['od_delivery_company'];
    ?>
 <?php 
    echo get_delivery_inquiry($od['od_delivery_company'], $od['od_invoice'], 'dvr_link');
    ?>
</td>
                </tr>
                <tr>
                    <th scope="row">운송장번호</th>
                    <td><?php 
    echo $od['od_invoice'];
    ?>
</td>
                </tr>
                <tr>
                    <th scope="row">배송일시</th>
                    <td><?php 
    echo $od['od_invoice_time'];
    ?>
Example #2
0
     $bank_list['od_deposit_name'] = $od['od_deposit_name'];
     $is_receipt = true;
 }
 // 포인트 입금
 if ($od['od_receipt_point'] > 0) {
     $point_list['od_time'] = $od['od_time'];
     $point_list['od_receipt_point'] = display_point($od['od_receipt_point']);
     $is_receipt = true;
 }
 // 배송정보
 $is_delivery = false;
 if ($od['od_delivery_company'] && $od['od_invoice']) {
     $delivery_list['dl_company'] = $od['od_delivery_company'];
     $delivery_list['od_invoice'] = $od['od_invoice'];
     $delivery_list['od_invoice_time'] = $od['od_invoice_time'];
     $delivery_list['dl_inquiry'] = get_delivery_inquiry($od['od_delivery_company'], $od['od_invoice'], 'dvr_link');
     $is_delivery = true;
 }
 // 입금 또는 배송내역이 있다면 메일 발송
 if ($is_receipt || $is_delivery) {
     ob_start();
     include G5_SHOP_PATH . '/mail/ordermail.mail.php';
     $content = ob_get_contents();
     ob_end_clean();
     $title = $config['cf_title'] . ' - ' . $od['od_name'] . '님 주문 처리 내역 안내';
     $email = $od['od_email'];
     // 메일 보낸 내역 상점메모에 update
     $od_shop_memo = G5_TIME_YMDHIS . ' - 결제/배송내역 메일발송\\n' . $od['od_shop_memo'];
     /* 1.00.06
        ** 주석처리 - 처리하지 않음
        if ($receipt_check)
Example #3
0
            <h3>배송정보</h3>

            <div  class="odf_tbl">
                <table>
                <colgroup>
                    <col class="grid_2">
                    <col>
                </colgroup>
                <tbody>
                <?php
                if ($od['od_invoice'] && $od['od_delivery_company'])
                {
                ?>
                <tr>
                    <th scope="row">배송회사</th>
                    <td><?php echo $od['od_delivery_company']; ?> <?php echo get_delivery_inquiry($od['od_delivery_company'], $od['od_invoice'], 'dvr_link'); ?></td>
                </tr>
                <tr>
                    <th scope="row">운송장번호</th>
                    <td><?php echo $od['od_invoice']; ?></td>
                </tr>
                <tr>
                    <th scope="row">배송일시</th>
                    <td><?php echo $od['od_invoice_time']; ?></td>
                </tr>
                <?php
                }
                else
                {
                ?>
                <tr>
Example #4
0
			<table>
			<colgroup>
				<col class="grid_3">
				<col>
			</colgroup>
			<tbody>
			<?php 
    if ($row['pt_send'] && $row['pt_send_num']) {
        ?>
			<tr>
				<th scope="row">배송회사</th>
				<td><?php 
        echo $row['pt_send'];
        ?>
 <?php 
        echo get_delivery_inquiry($row['pt_send'], $row['pt_send_num'], 'dvr_link');
        ?>
</td>
			</tr>
			<tr>
				<th scope="row">운송장번호</th>
				<td><?php 
        echo $row['pt_send_num'];
        ?>
</td>
			</tr>
			<?php 
    } else {
        ?>
			<tr>
				<td class="empty_table">아직 배송하지 않았거나 배송정보를 입력하지 못하였습니다.</td>