0) {
alert("수량은 숫자로 입력해 주세요.");
result = false;
return;
}
if(parseInt(val.replace(/[^0-9]/g, "")) < 1) {
alert("수량은 1이상 입력해 주세요.");
result = false;
return;
}
io_type = $el_type.eq(index).val();
if(io_type == "0")
sum_qty += parseInt(val);
});
if(!result) {
return;
}
if(min_qty > 0 && sum_qty < min_qty) {
alert("최소 구매수량은 "+number_format(String(min_qty))+"개 입니다.");
return;
}
f.action = "./cartupdate.php";
f.submit();
}
function fmemoform_submit(f){
if(!f.memo.value){
alert('내용을 입력하세요.');
f.memo.focus();
return false;
}
if(confirm('등록 하시겠습니까?'))
return true;
}
function tdel(obj){
if(confirm('삭제 하시겠습니까?')){
location.href=obj;
}
}
function wr_ques(){
answer = confirm('로그인 하셔야 상품평 작성이 가능합니다. 로그인 하시겠습니까?');
if(answer==true)
{ location.href='../login/login.php?url=/shop/view.php?index_no=64234'; }
}
// 견적서출력
function item_estimate(f, it_id){
var url = "./estimateform.php?it_id=" + it_id;
url += "&qty=" + parseInt($("input[name^=ct_qty]").val().replace(/,/g, '')); //수량
for(var i=1; i<=13; i++){
if($("#opt_p"+i+" option:selected").val()) {
url += "&opt_p"+i+"=" + $("#opt_p"+i+" option:selected").val();
}
}
if($("#opt_c option:selected").val()) {
url += "&opt_c=" + $("#opt_c option:selected").val();
}
if($("#opt_b option:selected").val()) {
url += "&opt_b=" + $("#opt_b option:selected").val();
}
url += "&app_amt=" + parseInt($("#app_amt").val().replace(/,/g, '')); //적용단가
url += "&tot_amt=" + parseInt($("#tot_amt").val().replace(/,/g, '')); //합계금액
url += "&add_amt=" + parseInt($("#add_amt").val().replace(/,/g, '')); //추가 및 할인금액
url += "&add_sum=" + parseInt($("#add_sum").val().replace(/,/g, '')); //추가합계금액
url += "&sit_amt=" + parseInt($("#sit_amt").val().replace(/,/g, '')); //총합계금액
url += "&vat_amt=" + parseInt($("#vat_amt").val().replace(/,/g, '')); //부가세
openwindow(url,'itemestimate','600','580','yes');
}
// 흥정하기
function item_haggle(f, it_id) {
var url = "./haggleform.php?it_id=" + it_id;
openwindow(url,'itemhaggle','600','650','yes');
}
// 샘플구매
function item_sample(f, it_id) {
var url = "./sampleform.php?it_id=" + it_id;
openwindow(url,'itemsample','600','650','yes');
}