| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- <?php
- include $_SERVER['DOCUMENT_ROOT'].'/common/lib/comm.php';
- include $_SERVER['DOCUMENT_ROOT'].'/common/user_chk.php';
- $HEADER_LOC = 'main';
- $nav_title = "입찰중";
- $list_url = "prepare_list.php";
- $s_cd_user = $_SESSION['s_cd_user'];
- $cd_sale = $_REQUEST['cd_sale'];
- $ds_status_sale = 'F0';
- $STitle = "입찰중"; //: 페이지 제목
- $bViewCar = true; //: 차 내용
- $bViewSuccess = false; //: 낙찰 내용
- $bViewTender = true; //: 입찰업체 내용
- $bViewBtn = true; //: 버튼&실행 내용
- //차량 정보는 여기서 가져오도록 수정
- $sql ="SELECT
- a.*
- , b.nm_model
- , d.nm_brand
- , getCode('car_master','ds_type',a.ds_type) as nm_type
- , getCode('car_master','ds_year',a.ds_year) as nm_year
- , getCode('car_master','ds_open',a.ds_open) as nm_open
- , getCode('car_master','ds_sales',a.ds_sales) as nm_sales
- , getCode('car_master','ds_transmission',a.ds_transmission) as nm_transmission
- , getCode('car_master','ds_oil',a.ds_oil) as nm_oil
- , getCode('car_master','ds_accident',a.ds_accident) as nm_accident
- , getCode('sale_master','ds_usertype',s.ds_usertype) as nm_usertype
- , getCode('member_master','ds_area',s.ds_area) as nm_area
- , getCode('member_master','ds_area',s.ds_area_user) as nm_area_user
- , getCode('sale_master','ds_status',s.ds_status) as nm_status
- , getRemainTime(".LIMIT_TIME_TENDER.", s.dt_approve, now()) as time_limit_tender
- , s.nm_name nm_name_sale
- , s.ds_status ds_status_sale
- , s.nm_hp nm_hp_sale
- , s.nm_email nm_email_sale
- , s.ds_area ds_area_sale
- , s.nm_recommend nm_recommend_sale
- , s.nm_cont_return nm_cont_return_sale
- , s.nm_file_chk1 nm_file_chk1_sale
- , s.nm_file_chk2 nm_file_chk2_sale
- , s.nm_file_chk3 nm_file_chk3_sale
- , s.nm_file_chk4 nm_file_chk4_sale
- , s.nm_file_chk5 nm_file_chk5_sale
- , s.ds_sale_period ds_sale_period
- , s.nm_cont_return nm_cont_return
- , s.ds_tradein ds_tradein
- , s.ds_buy_method ds_buy_method
- , s.ds_auction_time ds_auction_time
- , aap.nm_name aap_nm_name
- FROM sale_master s
- inner join car_master a on (s.cd_car = a.cd_car)
- left outer join car_model b on (a.cd_model = b.cd_model)
- left outer join car_brand d on (a.cd_brand = d.cd_brand)
- left outer join aap_master aap on (aap.cd_dealer = s.cd_aap_dealer)
- WHERE s.cd_sale='$cd_sale'
- AND s.cd_user = '$s_cd_user'
- AND s.is_staff = 'N'
- AND s.ds_delind = 'N'";
- // echo $sql;
- // exit;
- $col=mysql_fetch_array(mysql_query($sql));
- if (!empty($col['cd_car'])){
- $cd_car = $col['cd_car'];
- $cd_model = $col['cd_model'];
- $cd_brand = $col['cd_brand'];
- $ds_logo = $col['ds_logo'];
- $cd_category = $col['cd_category'];
- $cd_grade = $col['cd_grade'];
- $cd_model_sub = $col['cd_model_sub'];
- $ds_cate = $col['ds_cate'];
- $ds_type = $col['ds_type'];
- $ds_year = $col['ds_year'];
- $nm_name = $col['nm_name'];
- $nm_price = $col['nm_price'];
- $nm_mileage = $col['nm_mileage'];
- $ds_driving_system = $col['ds_driving_system'];
- $ds_transmission = $col['ds_transmission'];
- $nm_file_list = $col['nm_file_list'];
- $nm_file_main = $col['nm_file_main'];
- $nm_file_report = $col['nm_file_report'];
- $nm_file_report_back = $col['nm_file_report_back'];
- $nm_file_front = $col['nm_file_front'];
- $nm_file_back = $col['nm_file_back'];
- $nm_file_side1 = $col['nm_file_side1'];
- $nm_file_side2 = $col['nm_file_side2'];
- $nm_file_dashboard = $col['nm_file_dashboard'];
- $ds_oil = $col['ds_oil'];
- $nm_gearbox = $col['nm_gearbox'];
- $nm_color = $col['nm_color'];
- $nm_incolor = $col['nm_incolor'];
- $ds_accident = $col['ds_accident'];
- $nm_cont_accident = $col['nm_cont_accident'];
- $nm_regdate = $col['nm_regdate'];
- $ds_sales = $col['ds_sales'];
- $nm_btitle = $col['nm_btitle'];
- $nm_stitle = $col['nm_stitle'];
- $nm_ltitle = $col['nm_ltitle'];
- $nm_cont = $col['nm_cont'];
- $nm_cont_pac = $col['nm_cont_pac'];
- $nm_cont_detail = $col['nm_cont_detail'];
- $nm_desc = $col['nm_desc'];
- $nm_guide = $col['nm_guide'];
- $ds_open = $col['ds_open'];
- $ds_status = $col['ds_status'];
- $dt_insert = $col['dt_insert'];
- $nm_insert = $col['nm_insert'];
- $dt_update = $col['dt_update'];
- $nm_update = $col['nm_update'];
- $ds_delind = $col['ds_delind'];
- $nm_number = $col['nm_number'];
- $nm_cc = $col['nm_cc'];
- $ds_trade = $col['ds_trade'];
- $ds_main = $col['ds_main'];
- $nm_regdate_yyyy = $col['nm_regdate_yyyy'];
- $nm_regdate_mm = $col['nm_regdate_mm'];
- $nm_regdate_dd = $col['nm_regdate_dd'];
- $ds_sale_period = $col['ds_sale_period'];
- $nm_brand = $col['nm_brand'];
- $nm_model = $col['nm_model'];
- $nm_model_sub = $col['nm_model_sub'];
- $nm_grade = $col['nm_grade'];
- $nm_year = $col['nm_year'];
- $nm_type = $col['nm_type'];
- $nm_open = $col['nm_open'];
- $nm_sales = $col['nm_sales'];
- $nm_transmission = $col['nm_transmission'];
- $nm_oil = $col['nm_oil'];
- $nm_usertype = $col['nm_usertype'];
- $nm_accident = $col['nm_accident'];
- $nm_area = $col['nm_area'];
- $nm_name_sale = $col['nm_name_sale'];
- $ds_status_sale = $col['ds_status_sale'];
- $nm_hp_sale = $col['nm_hp_sale'];
- $nm_email_sale = $col['nm_email_sale'];
- $ds_area_sale = $col['ds_area_sale'];
- $nm_area_user = $col['nm_area_user'];
- $ds_business_num = $col['ds_business_num'];
- $nm_recommend_sale = $col['nm_recommend_sale'];
- $nm_cont_return_sale = $col['nm_cont_return_sale'];
- $ds_accident_check = $col['ds_accident_check'];
- $ds_damage_check = $col['ds_damage_check'];
- //보험처리
- $nm_act_chgno = $col['nm_act_chgno'];
- $nm_act_chgnm = $col['nm_act_chgnm'];
- $nm_act_s1 = $col['nm_act_s1'];
- $nm_act_s2 = $col['nm_act_s2'];
- $nm_act_s3 = $col['nm_act_s3'];
- $nm_act_s4 = $col['nm_act_s4'];
- $nm_act_my = $col['nm_act_my'];
- $nm_act_my_amt = $col['nm_act_my_amt'];
- $nm_act_other = $col['nm_act_other'];
- $nm_act_other_amt = $col['nm_act_other_amt'];
- $nm_act_searchdt = $col['nm_act_searchdt'];
- $nm_act_cnt = $col['nm_act_cnt'];
- $nm_act_general_spec = $col['nm_act_general_spec'];
- $nm_act_use_record = $col['nm_act_use_record'];
- $nm_act_use_record_lend = $col['nm_act_use_record_lend'];
- $nm_act_use_record_biz = $col['nm_act_use_record_biz'];
- $nm_act_use_record_official = $col['nm_act_use_record_official'];
- $nm_act_ins_loss = $col['nm_act_ins_loss'];
- $nm_act_ins_wet = $col['nm_act_ins_wet'];
- $nm_act_ins_robbery = $col['nm_act_ins_robbery'];
- $nm_file_act = $col['nm_file_act'];
- $nm_act_yn = $col['nm_act_yn'];
- $nm_cont_return = $col['nm_cont_return'];
- $aap_nm_name = $col['aap_nm_name'];
- $cd_car_history = $col['cd_car_history'];
- $time_limit_tender = $col['time_limit_tender'];
- $ds_tradein = $col['ds_tradein'];
- $ds_buy_method = $col['ds_buy_method'];
- $ds_auction_time = $col['ds_auction_time'];
- /*
- $arr_nm_info1 = explode("-",$nm_info1);
- if(count($arr_nm_info1) == 3){
- $nm_info11 = $arr_nm_info1[0];
- $nm_info12 = $arr_nm_info1[1];
- $nm_info13 = $arr_nm_info1[2];
- }else{
- $nm_info11 = "";
- $nm_info12 = "";
- $nm_info13 = "";
- }
- $arr_nm_info3 = explode("@",$nm_info3);
- if(count($arr_nm_info3) == 2){
- $nm_info31 = $arr_nm_info3[0];
- $nm_info32 = $arr_nm_info3[1];
- }else{
- $nm_info31 = "";
- $nm_info32 = "";
- }
- $nm_info3 = $col[nm_info3];
- */
- }else{
- AlertBack("지정되지않은 요청입니다");
- }
- list($nm_hp_sale1, $nm_hp_sale2, $nm_hp_sale3) = explode("-", $nm_hp_sale);
- ?>
- <?php include("../include/inc_header.php") ?>
- <main class="pb123">
- <section>
- <div class="sub--top--visual">
- <div class="contents--inner">
- <h2><?=$STitle?></h2>
- <p>이차조아에서는 사고 이력 조회 후 최고가 내차를 판매할 수 있습니다.</p>
- </div>
- </div>
- </section>
- <section>
- <div class="top--nav--wrap">
- <div class="contents--inner">
- <?php
- $sale_nav_title = '입찰중';
- include_once("inc_sale_nav.php");
- ?>
- </div>
- </div>
- </section>
- <?php
- if($bViewCar){
- include("./inc_ViewCar.php");
- }
- if($bViewTender){
- include("./inc_ViewTender.php");
- }
- if($bViewBtn){
- include("./inc_ViewBtn.php");
- }
- ?>
- </main>
- <?php include("inc_Popup.php") ?>
- <?php include("../include/inc_footer.php") ?>
|