1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php $menu['menu300'] = array ( array('300100', '주문관리', G5_ADMIN_URL.'/vender/orderlist.php?od_status=', 'scf_order', 1), array('300110', '전체주문', G5_ADMIN_URL.'/vender/orderlist.php?od_status=', 'scf_item'), array('300120', '미입금주문', G5_ADMIN_URL.'/vender/orderlist.php?od_status=주문', 'scf_item_type'), array('300130', '입금완료주문', G5_ADMIN_URL.'/vender/orderlist.php?od_status=입금', 'scf_item_type'), array('300140', '배송준비주문', G5_ADMIN_URL.'/vender/orderlist.php?od_status=준비', 'scf_item_type'), array('300150', '배송중주문', G5_ADMIN_URL.'/vender/orderlist.php?od_status=배송', 'scf_item_type'), array('300160', '배송완료주문', G5_ADMIN_URL.'/vender/orderlist.php?od_status=완료', 'scf_item_type'), array('300165', '반품주문', G5_ADMIN_URL.'/vender/orderlist.php?od_status=반품', 'scf_item_type'), array('300170', '취소주문', G5_ADMIN_URL.'/vender/orderlist.php?od_status=취소', 'scf_item_type'), array('300220', '주문내역출력', G5_ADMIN_URL.'/vender/orderprint.php', 'sst_print_order', 1), ); ?>
|