wangtengyu
2018-12-07 f459412e0dac4ed94106da043b4c6f8576bfe496
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
/* $Id : shopping_flow.js 4865 2007-01-31 14:04:10Z paulgao $ */
 
var selectedShipping = null;
var selectedPayment = null;
var selectedPack = null;
var selectedCard = null;
var selectedSurplus = '';
var selectedBonus = 0;
var selectedIntegral = 0;
var selectedOOS = null;
var alertedSurplus = false;
 
var groupBuyShipping = null;
var groupBuyPayment = null;
/* 余额额支付密码_添加_START_ */
var selected_pay_code = null;
/* 余额额支付密码_添加_END_ */
 
function selectShipping(recid, suppid) {
    $('#desc_'+suppid).html($('#ship_'+suppid+'_'+recid).attr('title'));//显示配送描述的地方
    Ajax.call('flow.php?step=select_shipping', 'recid=' + recid + '&suppid=' + suppid, orderShipping, 'GET', 'JSON');
 
}
function orderShipping(result) {
    if (result.error) {
        //alert(result.error);
        $('.pop-mask,.pop-compare').show();    
        $('.pop-compare .pop-text').html(result.error).css('padding-top',10);
        $('.pop-compare').css({'top':($(window).height()-$('.pop-compare').outerHeight())/2});    
    } else {
        
        orderSelectedResponse(result.content);
        if (document.getElementById('picktxt' + result.suppid)) {
            document.getElementById('picktxt' + result.suppid).innerHTML = result.picktxt;
        }
 
        //联运触发余额如果余额是选中状态
        if($('#issurplus').attr('checked') != 'undefined' && $('#issurplus').attr('checked')){
            $('#issurplus').attr('checked',false).trigger("click").attr('checked',false);
        }
    }
 
/*******************************************************************************
 * 改变配送方式
 */
function selectShipping_old(obj) {
    /* 代码增加_start By  */
    var theForm = obj.form;
    var con_country = theForm.elements['have_consignee'].value;
    if (con_country == '0') {
        alert('请先选择配送地址!');
        obj.checked = false;
        return;
    }
    /* 代码增加_end By  */
    if (selectedShipping == obj) {
        return;
    } else {
        selectedShipping = obj;
    }
 
    var supportCod = obj.attributes['supportCod'].value * 1;
    var supportPickup = 0;
    /* 代码修改_start By  */
    if (obj.attributes['supoortPickup']) {
        supportPickup = obj.attributes['supoortPickup'].value * 1;
        if (supportPickup == 0) {
            document.getElementById('pickup_point_box').style.display = 'none';
        } else {
            document.getElementById('pickup_point_box').style.display = '';
        }
    }
    /* 代码修改_end By  */
    var theForm = obj.form;
 
    for (var i = 0; i < theForm.elements.length; i++) {
        if (theForm.elements[i].name == 'payment' && theForm.elements[i].attributes['isCod'].value == '1') {
            if (supportCod == 0) {
                theForm.elements[i].checked = false;
                theForm.elements[i].disabled = true;
            } else {
                theForm.elements[i].disabled = false;
            }
        }
 
    }
 
    if (obj.attributes['insure'].value + 0 == 0) {
        document.getElementById('ECS_NEEDINSURE').checked = false;
        document.getElementById('ECS_NEEDINSURE').disabled = true;
    } else {
        document.getElementById('ECS_NEEDINSURE').checked = false;
        document.getElementById('ECS_NEEDINSURE').disabled = false;
    }
 
    var now = new Date();
    Ajax.call('flow.php?step=select_shipping', 'shipping=' + obj.value + '&pickup=' + supportPickup, orderShippingSelectedResponse, 'GET', 'JSON');
}
 
/**
 * 
 */
function orderShippingSelectedResponse(result) {
    if (result.need_insure) {
        try {
            document.getElementById('ECS_NEEDINSURE').checked = true;
        } catch (ex) {
            alert(ex.message);
        }
    }
 
    try {
        if (document.getElementById('ECS_CODFEE') != undefined) {
            document.getElementById('ECS_CODFEE').innerHTML = result.cod_fee;
    }
    } 
    catch (ex) {
        alert(ex.message);
    }
 
    /* 代码增加_start By  */
    if (document.getElementById('supplier_shipping') != undefined) {
        document.getElementById('supplier_shipping').innerHTML = result.supplier_shipping;
    }
    if (document.getElementById('pickup_point_box')) {
        document.getElementById('pickup_point_box').innerHTML = result.pickup_content;
    }
    /* 代码增加_end By  */
 
    orderSelectedResponse(result);
}
 
/**
 * 虚拟团购改变支付方式
 * 
 * @param {type}
 *            obj
 * @returns {undefined}
 */
function selectVirtualGroupPayment(obj) {
    /* 代码增加_start By  */
    var theForm = obj.form;
    var mobile_phone = theForm.elements['mobile_phone'].value;
    if (mobile_phone == '') {
        alert('请先选择邦定手机!');
        obj.checked = false;
        return;
    }
    /* 代码增加_end By  */
    if (selectedPayment == obj) {
        return;
    } else {
        selectedPayment = obj;
    }
 
    Ajax.call('flow.php?step=select_payment', 'payment=' + obj.value, orderSelectedResponse, 'GET', 'JSON');
}
/*******************************************************************************
 * 改变支付方式
 */
function selectPayment(obj) {
    /* 代码增加_start By  */
    var theForm = obj.form;
    var con_country = theForm.elements['have_consignee'].value;
    if (con_country == '0') {
        alert('请先选择配送地址!');
        obj.checked = false;
        return;
    }
    /* 代码增加_end By  */
    if (selectedPayment == obj) {
        return;
    } else {
        selectedPayment = obj;
    }
 
    Ajax.call('flow.php?step=select_payment', 'payment=' + obj.value, orderSelectedResponse, 'GET', 'JSON');
}
/**
 * 团购购物流程 --> 改变配送方式
 */
function handleGroupBuyShipping(obj) {
    if (groupBuyShipping == obj) {
        return;
    } else {
        groupBuyShipping = obj;
    }
 
    var supportCod = obj.attributes['supportCod'].value + 0;
    var theForm = obj.form;
 
    for (var i = 0; i < theForm.elements.length; i++) {
        if (theForm.elements[i].name == 'payment' && theForm.elements[i].attributes['isCod'].value == '1') {
            if (supportCod == 0) {
                theForm.elements[i].checked = false;
                theForm.elements[i].disabled = true;
            } else {
                theForm.elements[i].disabled = false;
            }
        }
    }
 
    if (obj.attributes['insure'].value + 0 == 0) {
        document.getElementById('ECS_NEEDINSURE').checked = false;
        document.getElementById('ECS_NEEDINSURE').disabled = true;
    } else {
        document.getElementById('ECS_NEEDINSURE').checked = false;
        document.getElementById('ECS_NEEDINSURE').disabled = false;
    }
 
    Ajax.call('group_buy.php?act=select_shipping', 'shipping=' + obj.value, orderSelectedResponse, 'GET');
}
 
/**
 * 团购购物流程 --> 改变支付方式
 */
function handleGroupBuyPayment(obj) {
    if (groupBuyPayment == obj) {
        return;
    } else {
        groupBuyPayment = obj;
    }
 
    Ajax.call('group_buy.php?act=select_payment', 'payment=' + obj.value, orderSelectedResponse, 'GET');
}
 
/**
 * 改变商品包装
 */
function selectPack(obj) {
    /* 代码修改_start By  */
    var theForm = obj.form;
    var con_country = theForm.elements['have_consignee'].value;
    if (con_country == '0') {
        alert('请先选择配送地址!');
        obj.options[0].selected = "selected";
        return;
    }
    var aaa = obj.options[obj.selectedIndex].value;
    document.getElementById('packimage').href = packimage[aaa];
 
    Ajax.call('flow.php?step=select_pack', 'pack=' + aaa, orderSelectedResponse, 'GET', 'JSON');
    /* 代码修改_end By  */
}
 
/**
 * 改变祝福贺卡
 */
function selectCard(obj) {
 
    /* 代码修改_start By  */
    var aaa = obj.options[obj.selectedIndex].value;
    document.getElementById('cardimage').href = cardimage[aaa];
    document.getElementById('card_message').disabled = (aaa > 0) ? false : true;
    Ajax.call('flow.php?step=select_card', 'card=' + aaa, orderSelectedResponse, 'GET', 'JSON');
    /* 代码修改_end By  */
}
 
/**
 * 选定了配送保价
 */
function selectInsure(needInsure) {
    needInsure = needInsure ? 1 : 0;
 
    Ajax.call('flow.php?step=select_insure', 'insure=' + needInsure, orderSelectedResponse, 'GET', 'JSON');
}
 
/**
 * 团购购物流程 --> 选定了配送保价
 */
function handleGroupBuyInsure(needInsure) {
    needInsure = needInsure ? 1 : 0;
 
    Ajax.call('group_buy.php?act=select_insure', 'insure=' + needInsure, orderSelectedResponse, 'GET', 'JSON');
}
 
/**
 * 回调函数
 */
function orderSelectedResponse(result) {
    if (result.error) {
        alert(result.error);
        location.href = './';
    }
 
    try {
        /* 余额额支付密码_添加_START_ */
        selected_pay_code = result.pay_code;
        /* 余额额支付密码_添加_END_ */
        var layer = document.getElementById("ECS_ORDERTOTAL");
 
        layer.innerHTML = (typeof result == "object") ? result.content : result;
 
        if (result.payment != undefined) {
            var surplusObj = document.forms['theForm'].elements['surplus'];
            if (surplusObj != undefined) {
                surplusObj.disabled = result.pay_code == 'balance';
            }
 
        }
    } catch (ex) {
    }
}
 
/**
 * 改变余额
 */
function changeSurplus(val) {
    /* 代码增加_start By  */
    var con_country = document.forms['theForm'].elements['have_consignee'].value;
    if (con_country == '0') {
        alert('请先选择配送地址!');
        obj.checked = false;
        return;
    }
    /* 代码增加_end By  */
 
    if (selectedSurplus == val) {
        // return;
    } else {
        // selectedSurplus = val;
    }
 
    Ajax.call('flow.php?step=change_surplus', 'surplus=' + val, changeSurplusResponse, 'GET', 'JSON');
}
 
/*******************************************************************************
 * 改变余额-虚拟团购
 */
function changeSurplusVir(val) {
    /* 代码增加_start By  */
    var mobile_phone = document.forms['theForm'].elements['mobile_phone'].value;
    if (mobile_phone == '') {
        alert('请先绑定手机!');
        obj.checked = false;
        return;
    }
    /* 代码增加_end By  */
 
    if (selectedSurplus == val) {
        // return;
    } else {
        // selectedSurplus = val;
    }
 
    Ajax.call('flow.php?step=change_surplus', 'surplus=' + val, changeSurplusResponse, 'GET', 'JSON');
}
 
/**
 * 改变余额回调函数
 */
function changeSurplusResponse(obj) {
    if (obj.error) {
        try {
            alert(obj.error);
            document.getElementById('ECS_SURPLUS').value = '0';
            document.getElementById('ECS_SURPLUS').focus();
        } catch (ex) {
        }
    } else {
        try {
            document.getElementById('ECS_SURPLUS').value = obj.surplus;
            if(obj.show){
                //如果余额完全支付订单金额
                $('#pay_div').hide();
                $('#payment_other_input').attr("checked", true).val(pay_balance_id);//默认选择余额支付方式
            }else{
                $('#pay_div').show();
                $("#pay_div input[type='radio']").attr("checked", false);//将之前选择的支付方式去掉
                $('#payment_other_input').val('0');
            }
        } catch (ex) {
        }
        orderSelectedResponse(obj.content);
    }
}
 
/**
 * 改变积分
 */
function changeIntegral(val, suppid) {
    /* 代码增加_start By  */
    var con_country = document.forms['theForm'].elements['have_consignee'].value;
    if (con_country == '0') {
        alert('请先选择配送地址!');
        obj.checked = false;
        return;
    }
    /* 代码增加_end By  */
    if (selectedIntegral == val) {
        return;
    } else {
        selectedIntegral = val;
    }
 
    Ajax.call('flow.php?step=change_integral', 'points=' + val + '&suppid=' + suppid, changeIntegralResponse, 'GET', 'JSON');
}
 
/**
 * 改变积分回调函数
 */
function changeIntegralResponse(obj) {
    if (obj.error) {
        try {
            document.getElementById('ECS_INTEGRAL_NOTICE_' + obj.suppid).innerHTML = obj.error;
            document.getElementById('ECS_INTEGRAL_' + obj.suppid).value = '0';
            document.getElementById('ECS_INTEGRAL_' + obj.suppid).focus();
        } catch (ex) {
        }
    } else {
        try {
            document.getElementById('ECS_INTEGRAL_NOTICE_' + obj.suppid).innerHTML = '';
        } catch (ex) {
        }
        orderSelectedResponse(obj.content);
    }
}
 
/**
 * 改变红包
 */
function changeBonus(val, suppid) {
    /* 代码增加_start By  */
    var con_country = document.forms['theForm'].elements['have_consignee'].value;
    if (con_country == '0') {
        alert('请先选择配送地址!');
        obj.checked = false;
        return;
    }
    /* 代码增加_end By  */
    if (selectedBonus == val) {
        // return;
    } else {
        // selectedBonus = val;
    }
 
    Ajax.call('flow.php?step=change_bonus', 'bonus=' + val + '&suppid=' + suppid, changeBonusResponse, 'GET', 'JSON');
}
 
/**
 * 改变红包的回调函数
 */
function changeBonusResponse(obj) {
    if (obj.error) {
        alert(obj.error);
 
        try {
            document.getElementById('ECS_BONUS_' + obj.suppid).value = '0';
        } catch (ex) {
        }
    } else {
        document.getElementById('bonus_sn_' + obj.suppid).value = '';
        orderSelectedResponse(obj.content);
 
        //联运触发余额如果余额是选中状态
        if($('#issurplus').attr('checked') != 'undefined' && $('#issurplus').attr('checked')){
            $('#issurplus').attr('checked',false).trigger("click").attr('checked',false);
        }
    }
}
 
/**
 * 验证红包序列号
 */
function validateBonus(val, suppid) {
    /* 代码增加_start By  */
    var con_country = document.forms['theForm'].elements['have_consignee'].value;
    if (con_country == '0') {
        alert('请先选择配送地址!');
        obj.checked = false;
        return;
    }
    /* 代码增加_end By  */
    if (val == '输入优惠券') {
        val = 0;
    }
 
    Ajax.call('flow.php?step=validate_bonus', 'bonus_sn=' + val + '&suppid=' + suppid, validateBonusResponse, 'GET', 'JSON');
}
 
function validateBonusResponse(obj) {
 
    if (obj.error) {
        alert(obj.error);
        // orderSelectedResponse(obj.content);
        try {
            document.getElementById('bonus_sn_' + obj.suppid).value = '';
        } catch (ex) {
        }
    } else {
        orderSelectedResponse(obj.content);
        document.getElementById('ECS_BONUS_'+obj.suppid).selectedIndex = '0';
    }
}
 
/**
 * 改变发票的方式
 */
function changeNeedInv() {
    /* 代码增加_start By  */
    var con_country = document.forms['theForm'].elements['have_consignee'].value;
    if (con_country == '0') {
        alert('请先选择配送地址!');
        obj.checked = false;
        return;
    }
    /* 代码增加_end By  */
    var obj = document.getElementById('ECS_NEEDINV');
    var objType = document.getElementById('ECS_INVTYPE');
    var objPayee = document.getElementById('ECS_INVPAYEE');
    var objContent = document.getElementById('ECS_INVCONTENT');
    var needInv = obj.checked ? 1 : 0;
    var invType = obj.checked ? (objType != undefined ? objType.value : '') : '';
    var invPayee = obj.checked ? objPayee.value : '';
    var invContent = obj.checked ? objContent.value : '';
    objType.disabled = objPayee.disabled = objContent.disabled = !obj.checked;
    if (objType != null) {
        objType.disabled = !obj.checked;
    }
    // 增值税发票_添加_START_
    var individual_inv = document.forms['theForm'].elements['inv_payee_type'].item(0);
    var unit_inv = document.forms['theForm'].elements['inv_payee_type'].item(1);
    var inv_payee_type = individual_inv.checked ? individual_inv.value : '';
    if (!individual_inv.checked) {
        inv_payee_type = unit_inv.checked ? unit_inv.value : '';
    }
    var normal_invoice_tbody = document.getElementById('normal_invoice_tbody');
    var vat_invoice_tbody = document.getElementById('vat_invoice_tbody');
    var b1 = false;
    var b2 = false;
    if (invType == 'normal_invoice') {
        b1 = true;
    } else if (invType == 'vat_invoice') {
        b2 = true;
    }
    if (normal_invoice_tbody != null) {
        normal_invoice_tbody.style.display = b1 ? '' : 'none';
    }
    if (vat_invoice_tbody != null) {
        vat_invoice_tbody.style.display = b2 ? '' : 'none';
    }
    if (inv_payee_type == 'unit') {
        objPayee.style.display = '';
    } else {
        objPayee.style.display = 'none';
    }
    // 增值税发票_添加_END_
 
    Ajax.call('flow.php?step=change_needinv', 'need_inv=' + needInv + '&inv_type=' + encodeURIComponent(invType) + '&inv_payee=' + encodeURIComponent(invPayee) + '&inv_content=' + encodeURIComponent(invContent), changeNeedInvResponse, 'GET');
}
 
function changeNeedInvResponse(obj) {
 
    orderSelectedResponse(obj);
    //联运触发余额如果余额是选中状态
    if($('#issurplus').attr('checked') != 'undefined' && $('#issurplus').attr('checked')){
        $('#issurplus').attr('checked',false).trigger("click").attr('checked',false);
    }
}
 
/*******************************************************************************
 * 改变发票的方式
 */
function groupBuyChangeNeedInv() {
    var obj = document.getElementById('ECS_NEEDINV');
    var objPayee = document.getElementById('ECS_INVPAYEE');
    var objContent = document.getElementById('ECS_INVCONTENT');
    var needInv = obj.checked ? 1 : 0;
    var invPayee = obj.checked ? objPayee.value : '';
    var invContent = obj.checked ? objContent.value : '';
    objPayee.disabled = objContent.disabled = !obj.checked;
 
    Ajax.call('group_buy.php?act=change_needinv', 'need_idv=' + needInv + '&amp;payee=' + invPayee + '&amp;content=' + invContent, null, 'GET');
}
 
/*******************************************************************************
 * 改变缺货处理时的处理方式
 */
function changeOOS(obj) {
    if (selectedOOS == obj) {
        return;
    } else {
        selectedOOS = obj;
    }
 
    Ajax.call('flow.php?step=change_oos', 'oos=' + obj.value, null, 'GET');
}
 
/* 余额额支付密码_添加_START_ */
function check_before_submit() {
    var the_form = document.getElementById("theForm");
    if (checkOrderForm(the_form)) {
        Ajax.call('flow.php?step=check_surplus_open', '', is_surplus_open, 'GET', 'TEXT', true, true);
    }
    return false;
}
 
function check_before_submit_vir() {   
    Ajax.call('flow.php?step=check_surplus_open', '', is_surplus_open, 'GET', 'TEXT', true, true);
        return false;
}
 
function is_surplus_open(result) {
    if (result == '1') {
        open_surplus_window();
    } else {
        submit_the_form();
    }
}
 
function open_surplus_window() {
    document.getElementById("popup_window").style.display = "";
    document.getElementById('bg').style.display = "";
    $('.surplus_password_input_notice').css('visibility','hidden').hide().find('.notice-text').html('');
}
 
function end_input_surplus() {
    var surplus_password = document.getElementById("surplus_password_input").value;
    Ajax.call('flow.php?step=verify_surplus_password', 'surplus_password=' + surplus_password, check_surplus_response, 'GET', 'TEXT', true, true);
}
 
function check_surplus_response(result) {
    if (result == '1') {
        submit_the_form();
        $('.surplus_password_input_notice').css('visibility','hidden').hide().find('.notice-text').html('');
    } else {
        //alert('密码错误!');
        $('.surplus_password_input_notice').css('visibility','visible').show().find('.notice-text').html('密码错误');
    }
}
 
function cancel_input_surplus() {
    document.getElementById("surplus_password_input").value = "";
    document.getElementById("popup_window").style.display = "none";
    document.getElementById('bg').style.display = "none";
    $('.surplus_password_input_notice').css('visibility','hidden').hide().find('.notice-text').html('');
}
 
function submit_the_form() {
    var the_form = document.getElementById("theForm");
    the_form.submit();
}
/* 余额额支付密码_添加_END_ */
 
/*******************************************************************************
 * 检查提交的订单表单
 */
function checkOrderForm(frm) {
    var paymentSelected = false;
    var shippingSelected = true;
 
    /* 代码增加_start By  */
 
    have_other = false;
    if (frm.elements['payment_other']) {
        for (var iii = 0; iii < frm.elements['payment_other'].length; iii++) {
            if (frm.elements['payment_other'][iii].checked) {
                have_other = true;
            }
        }
    }
 
    /*送货时间选择*/
      for(var j=0;j<frm.elements['best_time'].length;j++){
          if(frm.elements['best_time'][j].checked && frm.elements['best_time'][j].value==''){
                document.getElementById('definetime_input').focus();
                document.getElementById('time_id_4').className='curr';
                $('.pop-compare,.pop-mask').show();
                $('.pop-compare .pop-text').html('请选择送货时间');
                $('.pop-compare').css({'top':($(window).height()-$('.pop-compare').outerHeight())/2});    
                $('.cancel-btn').addClass('none');
                return false;
          }
          
      }
 
    have_alipay = false;
    if (frm.elements['www_68ecshop_com_bank']) {
        for (var iii = 0; iii < frm.elements['www_68ecshop_com_bank'].length; iii++) {
            if (frm.elements['www_68ecshop_com_bank'][iii].checked) {
                have_alipay = true;
            }
        }
        /* 代码增加_end By  */
    }
 
    // 检查是否选择了支付配送方式
    for (i = 0; i < frm.elements.length; i++) {
        // if (frm.elements[i].name == 'shipping' && frm.elements[i].checked)
        // {
        // shippingSelected = true;
        // }
 
        if (frm.elements[i].name == 'payment' && frm.elements[i].checked) {
            /* 代码修改_start By  */
            if (frm.elements[i].value == '0') {
                if (have_other == true) {
                    paymentSelected = true;
                } else {
                    paymentSelected = false;
                }
            } else if (frm.elements[i].value == document.getElementById('alipay_bank_input').value) {
                if (have_alipay == true) {
                    paymentSelected = true;
                } else {
                    paymentSelected = false;
                }
            } else {
                paymentSelected = true;
            }
            /* 代码修改_end By  */
        }
    }
 
    
    $('.shipping').each(function() {
        if (this.value <= 0) {
            shippingSelected = false;
        }
    })
 
    if (!shippingSelected) {
        //alert(flow_no_shipping);
        $('.pop-compare,.pop-mask').show();
        $('.pop-compare .pop-text').html(flow_no_shipping);
        $('.pop-compare').css({'top':($(window).height()-$('.pop-compare').outerHeight())/2});    
        $('.cancel-btn').addClass('none');
        return false;
    }
 
    if (!paymentSelected) {
        //alert(flow_no_payment);
        $('.pop-compare,.pop-mask').show();
        $('.pop-compare .pop-text').html(flow_no_payment);
        $('.pop-compare').css({'top':($(window).height()-$('.pop-compare').outerHeight())/2});    
        $('.cancel-btn').addClass('none');
        return false;
    }
 
 
    // 检查用户输入的余额
    if (document.getElementById("ECS_SURPLUS")) {
        var surplus = document.getElementById("ECS_SURPLUS").value;
        var error = Utils.trim(Ajax.call('flow.php?step=check_surplus', 'surplus=' + surplus, null, 'GET', 'TEXT', false));
        
        if (error) {
            try {
                document.getElementById("ECS_SURPLUS_NOTICE").innerHTML = error;
            } catch (ex) {
            }
            return false;
        }
    }
 
    // 检查用户输入的积分
    if (document.getElementById("ECS_INTEGRAL")) {
        var integral = document.getElementById("ECS_INTEGRAL").value;
        var error = Utils.trim(Ajax.call('flow.php?step=check_integral', 'integral=' + integral, null, 'GET', 'TEXT', false));
 
        if (error) {
            return false;
            try {
                document.getElementById("ECS_INTEGRAL_NOTICE").innerHTML = error;
            } catch (ex) {
            }
        }
    }
    // 增值税发票_添加_START_
    /* 检查发票 */
    if (document.getElementById('ECS_NEEDINV').checked) {
        if (frm.elements['inv_content'].value == '0' || frm.elements['inv_content'].value == '') {
            $('.pop-compare,.pop-mask').show();
            $('.pop-compare .pop-text').html('请选择发票内容');
            $('.pop-compare').css({'top':($(window).height()-$('.pop-compare').outerHeight())/2});    
            $('.cancel-btn').addClass('none');
            //alert('请选择发票内容');
            return false;
        }
        if (frm.elements['inv_type'].value == 'vat_invoice') {
            var check_array = new Array('vat_inv_company_name', 'vat_inv_taxpayer_id', 'vat_inv_registration_address', 'vat_inv_registration_phone', 'vat_inv_deposit_bank', 'vat_inv_bank_account', 'inv_consignee_name', 'inv_consignee_phone', 'inv_consignee_province', 'inv_consignee_city', 'inv_consignee_address');
            for (id in check_array) {
                if (frm.elements[check_array[id]].style.display != 'none' && (frm.elements[check_array[id]].value == '0' || frm.elements[check_array[id]].value == '')) {
                    //alert('请输入增值税发票相关信息');
                    $('.pop-compare,.pop-mask').show();
                    $('.pop-compare .pop-text').html('请输入增值税发票相关信息');
                    $('.pop-compare').css({'top':($(window).height()-$('.pop-compare').outerHeight())/2});    
                    $('.cancel-btn').addClass('none');
                    return false;
                }
            }
        } else if (frm.elements['inv_type'].value == 'normal_invoice') {
            if (document.getElementById('unit_inv').checked) {
                if (frm.elements['inv_payee'].value == '') {
                    $('.pop-compare,.pop-mask').show();
                    $('.pop-compare .pop-text').html('请输入单位名称');
                    $('.pop-compare').css({'top':($(window).height()-$('.pop-compare').outerHeight())/2});    
                    $('.cancel-btn').addClass('none');
                    //alert('请输入单位名称');
                    return false;
                }
            } else if (!document.getElementById('unit_inv').checked && !document.getElementById('individual_inv').checked) {
                //alert('请选择发票抬头');
                $('.pop-compare,.pop-mask').show();
                $('.pop-compare .pop-text').html('请选择发票抬头');
                $('.pop-compare').css({'top':($(window).height()-$('.pop-compare').outerHeight())/2});    
                $('.cancel-btn').addClass('none');
                return false;
            }
        } else {
            //alert('请选择发票类型');
            $('.pop-compare,.pop-mask').show();
            $('.pop-compare .pop-text').html('请选择发票类型');
            $('.pop-compare').css({'top':($(window).height()-$('.pop-compare').outerHeight())/2});    
            $('.cancel-btn').addClass('none');
            return false;
        }
    }
    // 增值税发票_添加_END_
    frm.action = frm.action + '?step=done';
    return true;
}
 
/*******************************************************************************
 * 检查收货地址信息表单中填写的内容
 */
function checkConsignee(frm) {
    var msg = new Array();
    var err = false;
 
    if (frm.elements['country'] && frm.elements['country'].value == 0) {
        msg.push(country_not_null);
        err = true;
    }
 
    if (frm.elements['province'] && frm.elements['province'].value == 0 && frm.elements['province'].length > 1) {
        err = true;
        msg.push(province_not_null);
    }
 
    if (frm.elements['city'] && frm.elements['city'].value == 0 && frm.elements['city'].length > 1) {
        err = true;
        msg.push(city_not_null);
    }
 
    if (frm.elements['district'] && frm.elements['district'].length > 1) {
        if (frm.elements['district'].value == 0) {
            err = true;
            msg.push(district_not_null);
        }
    }
 
    if (Utils.isEmpty(frm.elements['consignee'].value)) {
        err = true;
        msg.push(consignee_not_null);
    }
    
    //邮箱如果不为空则验证邮箱是否合法
    if (frm.elements['email'].value.length > 0 &&!Utils.isEmail(frm.elements['email'].value)) {
        err = true;
        msg.push(invalid_email);
    }
 
    if (frm.elements['address'] && Utils.isEmpty(frm.elements['address'].value)) {
        err = true;
        msg.push(address_not_null);
    }
 
    if (frm.elements['zipcode'] && frm.elements['zipcode'].value.length > 0 && (!Utils.isNumber(frm.elements['zipcode'].value))) {
        err = true;
        msg.push(zip_not_num);
    }
 
    /*
     * if (Utils.isEmpty(frm.elements['tel'].value)) { err = true;
     * msg.push(tele_not_null); } else { if
     * (!Utils.isTel(frm.elements['tel'].value)) { err = true;
     * msg.push(tele_invaild); } }
     * 
     */
//    if (frm.elements['mobile'] && frm.elements['mobile'].value.length > 0 && (!Utils.isMobile(frm.elements['mobile'].value))) {
//        err = true;
//        msg.push(mobile_invaild);
//    }
 
    if (Utils.isEmpty(frm.elements['mobile'].value) && Utils.isEmpty(frm.elements['tel'].value)) {
        err = true;
        msg.push(mobile_or_tel_not_null);
    } else {
        if (!Utils.isEmpty(frm.elements['mobile'].value) && !Utils.isMobile(frm.elements['mobile'].value)) {
            err = true;
            msg.push(mobile_invaild);
        }
        if (!Utils.isEmpty(frm.elements['tel'].value) && !Utils.isTel(frm.elements['tel'].value)) {
            err = true;
            msg.push(tele_invaild);
        }
    }
 
    if (err) {
        message = msg.join("\n");
        alert(message);
    }
    return !err;
}
// 增值税发票_添加_START_
function check_taxpayer_id(t, id) {
    if (!check_preg_match(t.value, 'taxpayer_id')) {
        document.getElementById(id).innerHTML = '纳税人识别号错误,请检查!';
    } else {
        document.getElementById(id).innerHTML = '';
    }
}
 
function check_bank_account(t, id) {
    if (!check_preg_match(t.value, 'back_account')) {
        document.getElementById(id).innerHTML = '银行账户含有非法字符!';
    } else {
        document.getElementById(id).innerHTML = '';
    }
}
 
function check_phone_number(t, id) {
    if (!check_preg_match(t.value, 'phone_number')) {
        document.getElementById(id).innerHTML = '手机号码格式不正确!';
    } else {
        document.getElementById(id).innerHTML = '';
    }
}
 
function check_preg_match(v, type) {
    var pattern = '';
    switch (type) {
    case 'taxpayer_id':
        pattern = '^[0-9]{15,}$';
        break;
    case 'back_account':
        pattern = '^[0-9A-z]+ *[0-9A-z]+$';
        break;
    case 'phone_number':
        pattern = '^1[0-9]{10}$';
    }
    var preg = new RegExp(pattern);
    return preg.test(v);
}
// 增值税发票_添加_END_
 
function doNewMobile() {
    var mobile_phone = $("#mobile_phone").val();
    if (mobile_phone == '' || !Utils.isMobile(mobile_phone)) {
        //alert('请填写正确的手机号');
        $('.pop-compare,.pop-mask').show();
        $('.pop-compare .pop-text').html('请填写正确的手机号');
        $('.pop-compare').css({'top':($(window).height()-$('.pop-compare').outerHeight())/2});    
    } else {
        Ajax.call('flow.php?act=edit_user_mobile', 'mobile_phone=' + mobile_phone, get_user_mobile, "GET", "JSON");
    }
}