주문관련 코드 수정중

This commit is contained in:
gnuboard
2013-10-22 10:55:29 +09:00
parent 61fc9655ad
commit eb2b23ce17
7 changed files with 217 additions and 66 deletions

View File

@ -647,6 +647,24 @@ $pg_anchor = '<ul class="anchor">
<col>
</colgroup>
<tbody>
<tr>
<th scope="row"><label for="de_delivery_company">배송업체</label></th>
<td>
<?php echo help("이용중 이거나 이용하실 배송업체를 선택하세요.", 50); ?>
<select name="de_delivery_company" id="de_delivery_company">
<option value="">없음</option>
<option value="자체배송" <?php echo get_selected($default['de_delivery_company'], "자체배송"); ?>>자체배송</option>
<?php
$dlcomp = explode(")", str_replace("(", "", G5_DELIVERY_COMPANY));
for ($i=0; $i<count($dlcomp); $i++) {
if (trim($dlcomp[$i])=="") continue;
list($value, $url, $tel) = explode("^", $dlcomp[$i]);
echo "<option value=\"$value\" ".get_selected($default['de_delivery_company'], $value).">$value</option>\n";
}
?>
</select>
</td>
</tr>
<tr>
<th scope="row"><label for="de_send_cost_case">배송비유형</label></th>
<td>