-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorderform.js
1765 lines (1695 loc) · 89.1 KB
/
orderform.js
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
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
if(jQuery("body").hasClass("single-product")){
// console.log("single-product");
// add back button after order button
// jQuery('<button id="btn_submit_back" type="button" class="single_add_to_cart_button button alt btn_outline btn_back">Back</button>').insertAfter('.single-product.woocommerce button.button[name="add-to-cart"]');
jQuery('<button id="btn_submit_back" type="button" class="single_add_to_cart_button button alt btn_outline btn_back">Back</button>').insertAfter('.single-product.woocommerce button.button[type="submit"]');
// set user info
jQuery('.com_id td p[name="com_id"]').html(curBillingObj["first_name"]);
jQuery('.com_name td p[name="com_name"]').html(curBillingObj["last_name"]);
jQuery('.com_addr td p[name="com_addr"]').html(curBillingObj["address"]);
jQuery('.contact_num td p[name="contact_num"]').html(curBillingObj["phone"]);
jQuery('#com_id').html(curBillingObj["first_name"]);
jQuery('#com_name').html(curBillingObj["last_name"]);
jQuery('#com_addr').html(curBillingObj["address"]);
jQuery('#contact_num').html(curBillingObj["phone"]);
// add class to modify checkbox
// jQuery(".thwepo-extra-options.thwepo_variable.modification1 tbody tr:nth-child(1)").addClass("tr_cbox_m");
// jQuery(".thwepo-extra-options.thwepo_variable.modification1 tbody tr:nth-child(2)").addClass("tr_cbox_m");
// jQuery(".thwepo-extra-options.thwepo_variable.modification1 tbody tr:nth-child(3)").addClass("tr_cbox_m");
// jQuery('.thwepo-extra-options.thwepo_variable.modification1 tbody tr').each(function (i, value) {
// if (i >= 4 && !jQuery(this).hasClass("d-none")) {
// jQuery(this).addClass("inputbox_m");
// }
// });
orderFormInit();
}
function orderFormInit() {
// set testing data
// jQuery('input[name="patient_id"]').val("test1");
// jQuery('input[name="patient_name"]').val("test2");
// jQuery('input[name="sph_re"]').val(-8);
// jQuery('input[name="cyl_re"]').val(-0.25);
// jQuery('input[name="axis_re"]').val(1);
// jQuery('input[name="flat_k_re"]').val(7);
// jQuery('input[name="steep_k_re"]').val(7);
// jQuery('input[name="steep_k_axis_re"]').val(1);
// jQuery('input[name="flat_e_re"]').val(0.01);
// jQuery('input[name="steep_e_re"]').val(0.01);
// jQuery('input[name="hvid_re"]').val(10.5);
// jQuery('input[name="pupil_size_re"]').val(4);
// jQuery('input[name="sph_le"]').val(-7);
// jQuery('input[name="cyl_le"]').val(-5);
// jQuery('input[name="axis_le"]').val(2);
// jQuery('input[name="flat_k_le"]').val(7.8);
// jQuery('input[name="steep_k_le"]').val(7.5);
// jQuery('input[name="steep_k_axis_le"]').val(90);
// jQuery('input[name="flat_e_le"]').val(0.6);
// jQuery('input[name="steep_e_le"]').val(0.6);
// jQuery('input[name="hvid_le"]').val(11.5);
// jQuery('input[name="pupil_size_le"]').val(5);
// get if exchange parameter has value
var urlParams = new URLSearchParams(window.location.search);
if(urlParams.get('patient_id')){
jQuery('input[name="patient_id"]').val(urlParams.get('patient_id'));
}
if(urlParams.get('patient_name')){
jQuery('input[name="patient_name"]').val(urlParams.get('patient_name'));
}
if(urlParams.get('sph_re')){
jQuery('input[name="sph_re"]').val(urlParams.get('sph_re'));
}
if(urlParams.get('cyl_re')){
jQuery('input[name="cyl_re"]').val(urlParams.get('cyl_re'));
}
if(urlParams.get('axis_re')){
jQuery('input[name="axis_re"]').val(urlParams.get('axis_re'));
}
if(urlParams.get('flat_k_re')){
jQuery('input[name="flat_k_re"]').val(urlParams.get('flat_k_re'));
}
if(urlParams.get('steep_k_re')){
jQuery('input[name="steep_k_re"]').val(urlParams.get('steep_k_re'));
}
if(urlParams.get('steep_k_axis_re')){
jQuery('input[name="steep_k_axis_re"]').val(urlParams.get('steep_k_axis_re'));
}
if(urlParams.get('flat_e_re')){
jQuery('input[name="flat_e_re"]').val(urlParams.get('flat_e_re'));
}
if(urlParams.get('steep_e_re')){
jQuery('input[name="steep_e_re"]').val(urlParams.get('steep_e_re'));
}
if(urlParams.get('hvid_re')){
jQuery('input[name="hvid_re"]').val(urlParams.get('hvid_re'));
}
if(urlParams.get('pupil_size_re')){
jQuery('input[name="pupil_size_re"]').val(urlParams.get('pupil_size_re'));
}
if(urlParams.get('sph_le')){
jQuery('input[name="sph_le"]').val(urlParams.get('sph_le'));
}
if(urlParams.get('cyl_le')){
jQuery('input[name="cyl_le"]').val(urlParams.get('cyl_le'));
}
if(urlParams.get('axis_le')){
jQuery('input[name="axis_le"]').val(urlParams.get('axis_le'));
}
if(urlParams.get('flat_k_le')){
jQuery('input[name="flat_k_le"]').val(urlParams.get('flat_k_le'));
}
if(urlParams.get('steep_k_le')){
jQuery('input[name="steep_k_le"]').val(urlParams.get('steep_k_le'));
}
if(urlParams.get('steep_k_axis_le')){
jQuery('input[name="steep_k_axis_le"]').val(urlParams.get('steep_k_axis_le'));
}
if(urlParams.get('flat_e_le')){
jQuery('input[name="flat_e_le"]').val(urlParams.get('flat_e_le'));
}
if(urlParams.get('steep_e_le')){
jQuery('input[name="steep_e_le"]').val(urlParams.get('steep_e_le'));
}
if(urlParams.get('hvid_le')){
jQuery('input[name="hvid_le"]').val(urlParams.get('hvid_le'));
}
if(urlParams.get('pupil_size_le')){
jQuery('input[name="pupil_size_le"]').val(urlParams.get('pupil_size_le'));
}
// get if exchange disable some field
if(urlParams.get('exchange')=="Y"){
jQuery('input[name="patient_id"]').attr('disabled', 'disabled');
jQuery('input[name="patient_name"]').attr('disabled', 'disabled');
jQuery('input[name="sph_re"]').attr('disabled', 'disabled');
jQuery('input[name="cyl_re"]').attr('disabled', 'disabled');
jQuery('input[name="axis_re"]').attr('disabled', 'disabled');
jQuery('input[name="flat_k_re"]').attr('disabled', 'disabled');
jQuery('input[name="steep_k_re"]').attr('disabled', 'disabled');
jQuery('input[name="steep_k_axis_re"]').attr('disabled', 'disabled')
jQuery('input[name="flat_e_re"]').attr('disabled', 'disabled');
jQuery('input[name="steep_e_re"]').attr('disabled', 'disabled');
// jQuery('input[name="hvid_re"]').attr('disabled', 'disabled');
// jQuery('input[name="pupil_size_re"]').attr('disabled', 'disabled');
jQuery('input[name="sph_le"]').attr('disabled', 'disabled');
jQuery('input[name="cyl_le"]').attr('disabled', 'disabled');
jQuery('input[name="axis_le"]').attr('disabled', 'disabled');
jQuery('input[name="flat_k_le"]').attr('disabled', 'disabled');
jQuery('input[name="steep_k_le"]').attr('disabled', 'disabled');
jQuery('input[name="steep_k_axis_le"]').attr('disabled', 'disabled');
jQuery('input[name="flat_e_le"]').attr('disabled', 'disabled');
jQuery('input[name="steep_e_le"]').attr('disabled', 'disabled');
// jQuery('input[name="hvid_le"]').attr('disabled', 'disabled');
// jQuery('input[name="pupil_size_le"]').attr('disabled', 'disabled');
}
// set all input
jQuery(".thwepo-extra-options.thwepo_variable .value input").each(function() {
var input_id = jQuery(this).attr("id");
var input_placeholder = jQuery(this).attr("placeholder");
jQuery(this).addClass("mdc-text-field__input").attr("autocorrect","off").attr("autocomplete","off").attr("spellcheck","false").attr("aria-labelledby",input_id);
jQuery(this).wrap('<div class="inline-text-field-container"><label class="mdc-text-field mdc-text-field--outlined"></label></div>');
jQuery(this).after('<div class="mdc-notched-outline mdc-notched-outline--upgraded"><div class="mdc-notched-outline__leading"></div><div class="mdc-notched-outline__notch"><span id="'+input_id+'-label" class="mdc-floating-label">'+input_placeholder+'</span></div><div class="mdc-notched-outline__trailing"></div></div>');
});
jQuery(".thwepo-extra-options.thwepo_variable .value input").each(function() {
var input_name = 'input[name="'+jQuery(this).attr("name")+'"]';
// console.log(input_name);
// console.log(jQuery(input_name).val());
if(jQuery(input_name).val() != ""){
jQuery(this).parent().find(".mdc-notched-outline--upgraded").addClass("mdc-notched-outline--notched");
// jQuery(this).parent().find(".mdc-floating-label").addClass("mdc-notched-outline--notched");
}
});
// set all checkbox
var cbox_re=`<div class="mdc-form-field">
<div class="mdc-checkbox">
<input type="checkbox"
class="mdc-checkbox__native-control"
id="checkbox_re" checked/>
<div class="mdc-checkbox__background">
<svg class="mdc-checkbox__checkmark"
viewBox="0 0 24 24">
<path class="mdc-checkbox__checkmark-path"
fill="none"
d="M1.73,12.91 8.1,19.28 22.79,4.59"/>
</svg>
<div class="mdc-checkbox__mixedmark"></div>
</div>
<div class="mdc-checkbox__ripple"></div>
<div class="mdc-checkbox__focus-ring"></div>
</div>
<label for="checkbox_re">Right Eye</label>
</div>`;
var cbox_le=`<div class="mdc-form-field">
<div class="mdc-checkbox">
<input type="checkbox"
class="mdc-checkbox__native-control"
id="checkbox_le" checked/>
<div class="mdc-checkbox__background">
<svg class="mdc-checkbox__checkmark"
viewBox="0 0 24 24">
<path class="mdc-checkbox__checkmark-path"
fill="none"
d="M1.73,12.91 8.1,19.28 22.79,4.59"/>
</svg>
<div class="mdc-checkbox__mixedmark"></div>
</div>
<div class="mdc-checkbox__ripple"></div>
<div class="mdc-checkbox__focus-ring"></div>
</div>
<label for="checkbox_le">Left Eye</label>
</div>`;
var cbox_re_m=`<div class="mdc-form-field">
<div class="mdc-checkbox">
<input type="checkbox"
class="mdc-checkbox__native-control"
id="checkbox_re_m"/>
<div class="mdc-checkbox__background">
<svg class="mdc-checkbox__checkmark"
viewBox="0 0 24 24">
<path class="mdc-checkbox__checkmark-path"
fill="none"
d="M1.73,12.91 8.1,19.28 22.79,4.59"/>
</svg>
<div class="mdc-checkbox__mixedmark"></div>
</div>
<div class="mdc-checkbox__ripple"></div>
<div class="mdc-checkbox__focus-ring"></div>
</div>
<label for="checkbox_re_m">Modification (Right)</label>
</div>`;
var cbox_le_m=`<div class="mdc-form-field">
<div class="mdc-checkbox">
<input type="checkbox"
class="mdc-checkbox__native-control"
id="checkbox_le_m"/>
<div class="mdc-checkbox__background">
<svg class="mdc-checkbox__checkmark"
viewBox="0 0 24 24">
<path class="mdc-checkbox__checkmark-path"
fill="none"
d="M1.73,12.91 8.1,19.28 22.79,4.59"/>
</svg>
<div class="mdc-checkbox__mixedmark"></div>
</div>
<div class="mdc-checkbox__ripple"></div>
<div class="mdc-checkbox__focus-ring"></div>
</div>
<label for="checkbox_le_m">Modification (Left)</label>
</div>`;
jQuery("#cbox_re").html(cbox_re);
jQuery("#cbox_le").html(cbox_le);
// jQuery("#cbox_re_m_org").html(cbox_re_m);
// jQuery("#cbox_le_m_org").html(cbox_le_m);
jQuery("#cbox_re_m").html(cbox_re_m);
jQuery("#cbox_le_m").html(cbox_le_m);
// set order text
// jQuery('.single-product.woocommerce button.button[name="add-to-cart"]').html("Order Lens");
jQuery('.single-product.woocommerce button.button[type="submit"]').html("Order Lens");
// set all tab sequence of all Patient field
jQuery('input[name="patient_id"]').attr("tabindex", "1");
jQuery('input[name="patient_name"]').attr("tabindex", "2");
// set all tab sequence of all order RE field
jQuery('#checkbox_re').attr("tabindex", "3");
jQuery('input[name="sph_re"]').attr("tabindex", "3");
jQuery('input[name="cyl_re"]').attr("tabindex", "4");
jQuery('input[name="axis_re"]').attr("tabindex", "5");
jQuery('input[name="flat_k_re"]').attr("tabindex", "6");
jQuery('input[name="flat_e_re"]').attr("tabindex", "7");
jQuery('input[name="steep_k_re"]').attr("tabindex", "8");
jQuery('input[name="steep_e_re"]').attr("tabindex", "9");
jQuery('input[name="steep_k_axis_re"]').attr("tabindex", "10");
jQuery('input[name="hvid_re"]').attr("tabindex", "11");
jQuery('input[name="pupil_size_re"]').attr("tabindex", "12");
// set all tab sequence of all order LE field
jQuery('#checkbox_le').attr("tabindex", "13");
jQuery('input[name="sph_le"]').attr("tabindex", "13");
jQuery('input[name="cyl_le"]').attr("tabindex", "14");
jQuery('input[name="axis_le"]').attr("tabindex", "15");
jQuery('input[name="flat_k_le"]').attr("tabindex", "16");
jQuery('input[name="flat_e_le"]').attr("tabindex", "17");
jQuery('input[name="steep_k_le"]').attr("tabindex", "18");
jQuery('input[name="steep_e_le"]').attr("tabindex", "19");
jQuery('input[name="steep_k_axis_le"]').attr("tabindex", "20");
jQuery('input[name="hvid_le"]').attr("tabindex", "21");
jQuery('input[name="pupil_size_le"]').attr("tabindex", "22");
// set all tab sequence of cal button
jQuery('#btn_cal').attr("tabindex", "23");
// set all tab sequence of all modification RE field
jQuery('#checkbox_re_m').attr("tabindex", "24");
jQuery('input[name="bc_flat_re"]').attr("tabindex", "24");
jQuery('input[name="bc_steep_re"]').attr("tabindex", "25");
jQuery('input[name="ac_flat_re"]').attr("tabindex", "26");
jQuery('input[name="ac_steep_re"]').attr("tabindex", "27");
jQuery('input[name="pc_flat_re"]').attr("tabindex", "28");
jQuery('input[name="pc_steep_re"]').attr("tabindex", "29");
jQuery('input[name="delta_target_re"]').attr("tabindex", "30");
jQuery('input[name="bc_width_re"]').attr("tabindex", "31");
jQuery('input[name="ld_re"]').attr("tabindex", "32");
jQuery('input[name="remarks_re"]').attr("tabindex", "33");
// set all tab sequence of all modification LE field
jQuery('#checkbox_le_m').attr("tabindex", "34");
jQuery('input[name="bc_flat_le"]').attr("tabindex", "34");
jQuery('input[name="bc_steep_le"]').attr("tabindex", "35");
jQuery('input[name="ac_flat_le"]').attr("tabindex", "36");
jQuery('input[name="ac_steep_le"]').attr("tabindex", "37");
jQuery('input[name="pc_flat_le"]').attr("tabindex", "38");
jQuery('input[name="pc_steep_le"]').attr("tabindex", "39");
jQuery('input[name="delta_target_le"]').attr("tabindex", "40");
jQuery('input[name="bc_width_le"]').attr("tabindex", "41");
jQuery('input[name="ld_le"]').attr("tabindex", "42");
jQuery('input[name="remarks_le"]').attr("tabindex", "43");
// set all tab sequence of confirm button
jQuery('#btn_confirm').attr("tabindex", "44");
// set all tab sequence of order button
// jQuery('.single-product.woocommerce button.button[name="add-to-cart"]').attr("tabindex", "45");
jQuery('.single-product.woocommerce button.button[type="submit"]').attr("tabindex", "45");
// if click enter key will not submit first
jQuery(document).ready(function() {
jQuery(window).keypress(function(event){
if(event.keyCode == 13) {
event.preventDefault();
return false;
}
});
});
// if tab checkbox to trigger click
jQuery('input:checkbox').keypress(function(e){
if((e.keyCode ? e.keyCode : e.which) == 13){
jQuery(this).trigger('click');
}
});
// if tab button to trigger click
jQuery('button').keypress(function(e){
if((e.keyCode ? e.keyCode : e.which) == 13){
jQuery(this).trigger('click');
}
});
// set required textbox checking
var text_patient_id="N";
var text_patient_name="N";
// After RE/LE checkbox clicked
var cbox_re="Y";
var cbox_le="Y";
// console.log("design_re="+urlParams.get('design_re')+"||design_le="+urlParams.get('design_le'));
if(urlParams.get('design_re')){
if(urlParams.get('design_re')=="none"){
jQuery("#checkbox_re").click();
cbox_re="N";
}
}
if(urlParams.get('design_le')){
if(urlParams.get('design_le')=="none"){
jQuery("#checkbox_le").click();
cbox_le="N";
}
}
var re_all_input='.thwepo-extra-options.thwepo_variable.order input[type="number"][name*="_re"]';
var le_all_input='.thwepo-extra-options.thwepo_variable.order input[type="number"][name*="_le"]';
var re_all_input_check="Y";
var le_all_input_check="Y";
var re_check="N";
var le_check="N";
var re_ajax_check="N";
var le_ajax_check="N";
jQuery(".cbox_eye input").on( "click", function() {
if(jQuery(this).attr("id") == "checkbox_re"){
var number_name=jQuery(re_all_input);
if(cbox_re=="Y"){
cbox_re="N";
}else{
cbox_re="Y";
}
}else{
var number_name=jQuery(le_all_input);
if(cbox_le=="Y"){
cbox_le="N";
}else{
cbox_le="Y";
}
}
var cbox=jQuery(this);
jQuery(number_name).each(function() {
if(cbox.is(':checked')){
// console.log("cbox_eye checked");
jQuery(this).removeAttr('disabled');
jQuery(this).parent().removeClass("mdc-text-field--disabled");
jQuery(this).parent().find(".mdc-notched-outline--upgraded").addClass("mdc-notched-outline--notched");
jQuery(this).parent().find(".mdc-floating-label").addClass("mdc-floating-label--float-above");
jQuery(this).parent().find(".mdc-notched-outline__notch").removeClass("width-auto");
}else{
// console.log("cbox_eye unchecked");
jQuery(this).attr('disabled', 'disabled').val("");
jQuery(this).parent().addClass("mdc-text-field--disabled");
jQuery(this).parent().find(".mdc-notched-outline--upgraded").removeClass("mdc-notched-outline--notched");
jQuery(this).parent().find(".mdc-floating-label").removeClass("mdc-floating-label--float-above");
jQuery(this).parent().find(".mdc-notched-outline__notch").addClass("width-auto");
}
});
});
jQuery("#btn_cal_reset").on( "click", function() {
// reset all Patient field
jQuery('input[name="patient_id"]').val("");
jQuery('input[name="patient_name"]').val("");
// reset all order RE field
jQuery('input[name="sph_re"]').val("");
jQuery('input[name="cyl_re"]').val("");
jQuery('input[name="axis_re"]').val("");
jQuery('input[name="flat_k_re"]').val("");
jQuery('input[name="flat_e_re"]').val("");
jQuery('input[name="steep_k_re"]').val("");
jQuery('input[name="steep_e_re"]').val("");
jQuery('input[name="steep_k_axis_re"]').val("");
jQuery('input[name="hvid_re"]').val("");
jQuery('input[name="pupil_size_re"]').val("");
// reset all order LE field
jQuery('input[name="sph_le"]').val("");
jQuery('input[name="cyl_le"]').val("");
jQuery('input[name="axis_le"]').val("");
jQuery('input[name="flat_k_le"]').val("");
jQuery('input[name="flat_e_le"]').val("");
jQuery('input[name="steep_k_le"]').val("");
jQuery('input[name="steep_e_le"]').val("");
jQuery('input[name="steep_k_axis_le"]').val("");
jQuery('input[name="hvid_le"]').val("");
jQuery('input[name="pupil_size_le"]').val("");
});
// set default RE modification field
// var default_ld_re=0;
var default_bc_width_re=6;
var default_bc_flat_re=0;
var default_bc_steep_re=0;
var default_ac_flat_re=0;
var default_ac_steep_re=0;
var default_pc_flat_re=0;
var default_pc_steep_re=0;
var default_delta_target_re=0;
// set default LE modification field
// var default_ld_le=0;
var default_bc_width_le=6;
var default_bc_flat_le=0;
var default_bc_steep_le=0;
var default_ac_flat_le=0;
var default_ac_steep_le=0;
var default_pc_flat_le=0;
var default_pc_steep_le=0;
var default_delta_target_le=0;
// set hidden RE field to store value if user skip modification page
var model_re="";
var material_re="";
var design_re="none";
var bc_design_re="";
var ld_re="";
var lp_re=0;
var thickness_re=0;
var bc_width_re="";
var bc_flat_re=0;
var bc_steep_re=0;
var ac1_flat_re=0;
var ac1_steep_re=0;
var ac2_flat_re=0;
var ac2_steep_re=0;
var pc_flat_re=0;
var pc_steep_re=0;
var delta_target_re=0;
var made_re="";
// set hidden LE field to store value if user skip modification page
var model_le="";
var material_le="";
var design_le="none";
var bc_design_le="";
var ld_le="";
var lp_le=0;
var thickness_le=0;
var bc_width_le="";
var bc_flat_le=0;
var bc_steep_le=0;
var ac1_flat_le=0;
var ac1_steep_le=0;
var ac2_flat_le=0;
var ac2_steep_le=0;
var pc_flat_le=0;
var pc_steep_le=0;
var delta_target_le=0;
var made_le="";
// set default modification RE field
var modify_bc_flat_re=0;
var modify_ac_flat_re=0;
var modify_pc_flat_re=0;
var modify_bc_steep_re=0;
var modify_ac_steep_re=0;
var modify_pc_steep_re=0;
// set default modification LE field
var modify_bc_flat_le=0;
var modify_ac_flat_le=0;
var modify_pc_flat_le=0;
var modify_bc_steep_le=0;
var modify_ac_steep_le=0;
var modify_pc_steep_le=0;
var error_msg="";
function orderFormCheck(cbox){
if(cbox=="RE"){
var cbox_e=cbox_re;
var flat_k_val=parseFloat(jQuery('input[name="flat_k_re"]').val());
var steep_k_val=parseFloat(jQuery('input[name="steep_k_re"]').val());
var cbox_all_input=re_all_input;
var cbox_all_input_check=re_all_input_check;
var cbox_check=re_check;
var eye_text = "Right Eye";
}else if(cbox=="LE"){
var cbox_e=cbox_le;
var flat_k_val=parseFloat(jQuery('input[name="flat_k_le"]').val());
var steep_k_val=parseFloat(jQuery('input[name="steep_k_le"]').val());
var cbox_all_input=le_all_input;
var cbox_all_input_check=le_all_input_check;
var cbox_check=le_check;
var eye_text = "Left Eye";
}
if(cbox_e=="Y"){
jQuery(cbox_all_input).each(function() {
if(jQuery(this).val() == ""){
cbox_all_input_check="N";
}
});
if(cbox_all_input_check=="N"){
error_msg+='\nAll Input of '+eye_text+' is required';
}else if(cbox_all_input_check=="Y"){
// console.log(flat_k_val);
// console.log(steep_k_val);
if(flat_k_val>9 && flat_k_val<37.33){
error_msg+='\n"Flat K" of '+eye_text+' must be in range 7-9(mm) or 37.33-48(D)';
}else {
if((flat_k_val>=37.33&&flat_k_val<=48)){
jQuery('input[name="flat_k_re"]').val(Math.round(336/flat_k_val));
}
}
if(steep_k_val>9 && steep_k_val<37.33){
error_msg+='\n"Steep K" of '+eye_text+' must be in range 7-9(mm) or 37.33-48(D)';
}else {
if((steep_k_val>=37.33&&steep_k_val<=48)){
jQuery('input[name="steep_re"]').val(Math.round(336/steep_k_val));
}
if(flat_k_val >= steep_k_val){
if(cbox=="RE"){
re_check="Y";
}else if(cbox=="LE"){
le_check="Y";
}
}else{
error_msg+='\n"Steep K" of '+eye_text+' must be less than or equal to "Flat K" of '+eye_text;
}
}
}
}
}
// After Calculate Lens button clicked
jQuery("#btn_cal").on( "click", function() {
console.log("cbox_re="+cbox_re+"||cbox_le="+cbox_le);
error_msg="";
if(jQuery('input[name="patient_id"]').val() != ""){
text_patient_id="Y";
}else{
text_patient_id="N";
}
if(jQuery('input[name="patient_name"]').val() != ""){
text_patient_name="Y";
}else{
text_patient_name="N";
}
if(text_patient_id=="N"){
error_msg+="\nPatient ID is required";
}
if(text_patient_name=="N"){
error_msg+="\nPatient Name is required";
}
if(cbox_re=="N"&&cbox_le=="N"){
error_msg+="\nSelect at least one checkbox(RE/LE)";
}
if(cbox_re=="Y"){
orderFormCheck("RE");
}else{
re_check="N";
}
if(cbox_le=="Y"){
orderFormCheck("LE");
}else{
le_check="N";
}
if(cbox_re=="Y"&&cbox_le=="Y"){
if(re_check=="Y"&&le_check=="N"){
re_check="N";
le_check="N";
}else if(re_check=="N"&&le_check=="Y"){
re_check="N";
le_check="N";
}
}
// console.log("re_check="+re_check+"||le_check="+le_check);
if(text_patient_id=="Y"&&text_patient_name=="Y"&&(re_check=="Y"||le_check=="Y")){
orderClick("cal",cbox_re,cbox_le);
}
if(error_msg != ""){
jQuery(".error_msg").html(error_msg);
}
});
// After Modiification RE/LE checkbox clicked
var cbox_re_m="N";
var cbox_le_m="N";
var re_all_input_m='.thwepo-extra-options.thwepo_variable.modification1 input[type="number"][name*="_re"]';
var le_all_input_m='.thwepo-extra-options.thwepo_variable.modification1 input[type="number"][name*="_le"]';
var re_all_input2_m='.thwepo-extra-options.thwepo_variable.modification2 input[name*="_re"]';
var le_all_input2_m='.thwepo-extra-options.thwepo_variable.modification2 input[name*="_le"]';
var re_all_input_check_m="N";
var le_all_input_check_m="N";
var re_check_m="N";
var le_check_m="N";
var re_ajax_check_m="N";
var le_ajax_check_m="N";
function ModificationFormInput(input){
jQuery(input).each(function() {
// console.log("cbox_eye unchecked");
jQuery(this).not('[name*="remarks"]').attr('disabled', 'disabled').val("");
jQuery(this).not('[name*="remarks"]').parent().addClass("mdc-text-field--disabled");
jQuery(this).not('[name*="remarks"]').parent().find(".mdc-notched-outline--upgraded").removeClass("mdc-notched-outline--notched");
jQuery(this).not('[name*="remarks"]').parent().find(".mdc-floating-label").removeClass("mdc-floating-label--float-above");
jQuery(this).not('[name*="remarks"]').parent().find(".mdc-notched-outline__notch").addClass("width-auto");
});
}
ModificationFormInput(re_all_input_m);
ModificationFormInput(le_all_input_m);
ModificationFormInput(re_all_input2_m);
ModificationFormInput(le_all_input2_m);
function ModificationFormCheckbox(number_name,cbox_m,eye_name){
jQuery(number_name).each(function() {
if(cbox_m.is(':checked')){
// console.log("cbox_eye checked");
jQuery(this).not('[name*="remarks"]').removeAttr('disabled');
jQuery(this).not('[name*="remarks"]').parent().removeClass("mdc-text-field--disabled");
jQuery(this).not('[name*="remarks"]').parent().find(".mdc-notched-outline--upgraded").addClass("mdc-notched-outline--notched");
jQuery(this).not('[name*="remarks"]').parent().find(".mdc-floating-label").addClass("mdc-floating-label--float-above");
jQuery(this).not('[name*="remarks"]').parent().find(".mdc-notched-outline__notch").removeClass("width-auto");
// set default RE/LE Modification value
if(eye_name=="re"){
var bc_flat_val=default_bc_flat_re;
var bc_steep_val=default_bc_steep_re;
var ac_flat_val=default_ac_flat_re;
var ac_steep_val=default_ac_steep_re;
var pc_flat_val=default_pc_flat_re;
var pc_steep_val=default_pc_steep_re;
var delta_target_val=default_delta_target_re;
var bc_width_val=default_bc_width_re;
var ld_val=ld_re;
}else if(eye_name=="le"){
var bc_flat_val=default_bc_flat_le;
var bc_steep_val=default_bc_steep_le;
var ac_flat_val=default_ac_flat_le;
var ac_steep_val=default_ac_steep_le;
var pc_flat_val=default_pc_flat_le;
var pc_steep_val=default_pc_steep_le;
var delta_target_val=default_delta_target_le;
var bc_width_val=default_bc_width_le;
var ld_val=ld_le;
}
jQuery('input[name="bc_flat_'+eye_name+'"]').val(bc_flat_val);
jQuery('input[name="bc_steep_'+eye_name+'"]').val(bc_steep_val);
jQuery('input[name="ac_flat_'+eye_name+'"]').val(ac_flat_val);
jQuery('input[name="ac_steep_'+eye_name+'"]').val(ac_steep_val);
jQuery('input[name="pc_flat_'+eye_name+'"]').val(pc_flat_val);
jQuery('input[name="pc_steep_'+eye_name+'"]').val(pc_steep_val);
jQuery('input[name="delta_target_'+eye_name+'"]').val(delta_target_val);
jQuery('input[name="bc_width_'+eye_name+'"]').val(bc_width_val);
jQuery('input[name="ld_'+eye_name+'"]').val(ld_val);
}else{
// console.log("cbox_eye unchecked");
jQuery(this).not('[name*="remarks"]').attr('disabled', 'disabled').val("");
jQuery(this).not('[name*="remarks"]').parent().addClass("mdc-text-field--disabled");
jQuery(this).not('[name*="remarks"]').parent().find(".mdc-notched-outline--upgraded").removeClass("mdc-notched-outline--notched");
jQuery(this).not('[name*="remarks"]').parent().find(".mdc-floating-label").removeClass("mdc-floating-label--float-above");
jQuery(this).not('[name*="remarks"]').parent().find(".mdc-notched-outline__notch").addClass("width-auto");
// set default Modification value
jQuery('input[name="bc_flat_'+eye_name+'"]').val("");
jQuery('input[name="bc_steep_'+eye_name+'"]').val("");
jQuery('input[name="ac_flat_'+eye_name+'"]').val("");
jQuery('input[name="ac_steep_'+eye_name+'"]').val("");
jQuery('input[name="pc_flat_'+eye_name+'"]').val("");
jQuery('input[name="pc_steep_'+eye_name+'"]').val("");
jQuery('input[name="delta_target_'+eye_name+'"]').val("");
jQuery('input[name="bc_width_'+eye_name+'"]').val("");
jQuery('input[name="ld_'+eye_name+'"]').val("");
}
});
}
jQuery(".cbox_eye_m input").on( "click", function() {
if(jQuery(this).attr("id") == "checkbox_re_m"){
var number_name_m=jQuery(re_all_input_m);
var number_name2_m=jQuery(re_all_input2_m);
var eye_name="re";
if(cbox_re_m=="Y"){
cbox_re_m="N";
}else{
cbox_re_m="Y";
}
}else{
var number_name_m=jQuery(le_all_input_m);
var number_name2_m=jQuery(le_all_input2_m);
var eye_name="le";
if(cbox_le_m=="Y"){
cbox_le_m="N";
}else{
cbox_le_m="Y";
}
}
var cbox_m=jQuery(this);
ModificationFormCheckbox(number_name_m,cbox_m,eye_name)
ModificationFormCheckbox(number_name2_m,cbox_m,eye_name)
});
jQuery("#btn_confirm_reset").on( "click", function() {
// reset all modification RE field
jQuery('input[name="bc_flat_re"]').val("");
jQuery('input[name="bc_steep_re"]').val("");
jQuery('input[name="ac_flat_re"]').val("");
jQuery('input[name="ac_steep_re"]').val("");
jQuery('input[name="pc_flat_re"]').val("");
jQuery('input[name="pc_steep_re"]').val("");
jQuery('input[name="delta_target_re"]').val("");
jQuery('input[name="bc_width_re"]').val("");
jQuery('input[name="ld_re"]').val("");
jQuery('input[name="remarks_re"]').val("");
// reset all modification LE field
jQuery('input[name="bc_flat_le"]').val("");
jQuery('input[name="bc_steep_le"]').val("");
jQuery('input[name="ac_flat_le"]').val("");
jQuery('input[name="ac_steep_le"]').val("");
jQuery('input[name="pc_flat_le"]').val("");
jQuery('input[name="pc_steep_le"]').val("");
jQuery('input[name="delta_target_le"]').val("");
jQuery('input[name="bc_width_le"]').val("");
jQuery('input[name="ld_le"]').val("");
jQuery('input[name="remarks_le"]').val("");
});
jQuery("#btn_confirm_back").on( "click", function() {
jQuery(".thwepo-extra-options.thwepo_variable.company").show();
jQuery(".thwepo-extra-options.thwepo_variable.company tbody tr:nth-child(10)").show();
jQuery(".thwepo-extra-options.thwepo_variable.company tbody tr:nth-child(9)").show();
jQuery(".thwepo-extra-options.thwepo_variable.order").show();
jQuery("#btn_cal").show();
jQuery("#patient_id_val").html(jQuery('input[name="patient_id"]').val());
jQuery("#patient_name_val").html(jQuery('input[name="patient_name"]').val());
jQuery("#modification").hide();
jQuery(".thwepo-extra-options.thwepo_variable.modification0").hide();
jQuery(".thwepo-extra-options.thwepo_variable.modification1").hide();
jQuery(".thwepo-extra-options.thwepo_variable.modification2").hide();
design_re="none";
design_le="none";
// jQuery([document.documentElement, document.body]).animate({
// scrollTop: jQuery(".single-product-category").offset().top-150
// }, 500);
});
// After Confirm Parameters button clicked
jQuery("#btn_confirm").on( "click", function() {
jQuery(".woocommerce div.product form.cart .single_variation_wrap .woocommerce-variation-add-to-cart").css("display","block");
error_msg="";
// if skip Modification
console.log("cbox_re_m="+cbox_re_m+"||cbox_le_m="+cbox_le_m);
if(cbox_re_m=="N"&&cbox_le_m=="N"){
console.log("design_re="+design_re+"//design_le="+design_le);
if(design_re=="Spherical"){
jQuery("#pa_re").val("spherical").change();
}else if(design_re=="Toric"){
jQuery("#pa_re").val("toric").change();
}else{
jQuery("#pa_re").val("none").change();
}
if(design_le=="Spherical"){
jQuery("#pa_le").val("spherical").change();
}else if(design_le=="Toric"){
jQuery("#pa_le").val("toric").change();
}else{
jQuery("#pa_le").val("none").change();
}
show_next_page("confirm");
// console.log(re_check);
// console.log(le_check);
// if(re_check){
// jQuery('input[name="model_re"]').removeAttr('disabled').val(model_re);
// jQuery('input[name="material_re"]').removeAttr('disabled').val(material_re);
// jQuery('input[name="design_re"]').removeAttr('disabled').val(design_re);
// jQuery('input[name="bc_design_re"]').removeAttr('disabled').val(bc_design_re);
// jQuery('input[name="ld_re"]').removeAttr('disabled').val(ld_re);
// jQuery('input[name="lp_re"]').removeAttr('disabled').val(lp_re);
// jQuery('input[name="thickness_re"]').removeAttr('disabled').val(thickness_re);
// jQuery('input[name="bc_width_re"]').removeAttr('disabled').val(bc_width_re);
// jQuery('input[name="bc_flat_re2"]').removeAttr('disabled').val(bc_flat_re);
// jQuery('input[name="bc_steep_re2"]').removeAttr('disabled').val(bc_steep_re);
// jQuery('input[name="ac1_flat_re"]').removeAttr('disabled').val(ac1_flat_re);
// jQuery('input[name="ac1_steep_re"]').removeAttr('disabled').val(ac1_steep_re);
// jQuery('input[name="ac2_flat_re"]').removeAttr('disabled').val(ac2_flat_re);
// jQuery('input[name="ac2_steep_re"]').removeAttr('disabled').val(ac2_steep_re);
// jQuery('input[name="pc_flat_re2"]').removeAttr('disabled').val(pc_flat_re);
// jQuery('input[name="pc_steep_re2"]').removeAttr('disabled').val(pc_steep_re);
// if(urlParams.get('exchange')=="Y"){
// jQuery('input[name="patient_id"]').removeAttr('disabled');
// jQuery('input[name="patient_name"]').removeAttr('disabled');
// jQuery('input[name="sph_re"]').removeAttr('disabled');
// jQuery('input[name="cyl_re"]').removeAttr('disabled');
// jQuery('input[name="axis_re"]').removeAttr('disabled');
// jQuery('input[name="flat_k_re"]').removeAttr('disabled');
// jQuery('input[name="steep_k_re"]').removeAttr('disabled');
// jQuery('input[name="steep_k_axis_re"]').removeAttr('disabled')
// jQuery('input[name="flat_e_re"]').removeAttr('disabled');
// jQuery('input[name="steep_e_re"]').removeAttr('disabled');
// // jQuery('input[name="hvid_re"]').removeAttr('disabled');
// // jQuery('input[name="pupil_size_re"]').removeAttr('disabled');
// }
// }
// if(le_check){
// jQuery('input[name="model_le"]').removeAttr('disabled').val(model_le);
// jQuery('input[name="material_le"]').removeAttr('disabled').val(material_le);
// jQuery('input[name="design_le"]').removeAttr('disabled').val(design_le);
// jQuery('input[name="bc_design_le"]').removeAttr('disabled').val(bc_design_le);
// jQuery('input[name="ld_le"]').removeAttr('disabled').val(ld_le);
// jQuery('input[name="lp_le"]').removeAttr('disabled').val(lp_le);
// jQuery('input[name="thickness_le"]').removeAttr('disabled').val(thickness_le);
// jQuery('input[name="bc_width_le"]').removeAttr('disabled').val(bc_width_le);
// jQuery('input[name="bc_flat_le2"]').removeAttr('disabled').val(bc_flat_le);
// jQuery('input[name="bc_steep_le2"]').removeAttr('disabled').val(bc_steep_le);
// jQuery('input[name="ac1_flat_le"]').removeAttr('disabled').val(ac1_flat_le);
// jQuery('input[name="ac1_steep_le"]').removeAttr('disabled').val(ac1_steep_le);
// jQuery('input[name="ac2_flat_le"]').removeAttr('disabled').val(ac2_flat_le);
// jQuery('input[name="ac2_steep_le"]').removeAttr('disabled').val(ac2_steep_le);
// jQuery('input[name="pc_flat_le2"]').removeAttr('disabled').val(pc_flat_le);
// jQuery('input[name="pc_steep_le2"]').removeAttr('disabled').val(pc_steep_le);
// if(urlParams.get('exchange')=="Y"){
// jQuery('input[name="patient_id"]').removeAttr('disabled');
// jQuery('input[name="patient_name"]').removeAttr('disabled');
// jQuery('input[name="sph_le"]').removeAttr('disabled');
// jQuery('input[name="cyl_le"]').removeAttr('disabled');
// jQuery('input[name="axis_le"]').removeAttr('disabled');
// jQuery('input[name="flat_k_le"]').removeAttr('disabled');
// jQuery('input[name="steep_k_le"]').removeAttr('disabled');
// jQuery('input[name="steep_k_axis_le"]').removeAttr('disabled');
// jQuery('input[name="flat_e_le"]').removeAttr('disabled');
// jQuery('input[name="steep_e_le"]').removeAttr('disabled');
// // jQuery('input[name="hvid_le"]').removeAttr('disabled');
// // jQuery('input[name="pupil_size_le"]').removeAttr('disabled');
// }
// }
}else if(cbox_re_m=="Y"&&cbox_le_m=="N"){
re_check_m="Y";
orderClick("confirm",cbox_re_m,cbox_le_m);
}else if(cbox_re_m=="N"&&cbox_le_m=="Y"){
le_check_m="Y";
orderClick("confirm",cbox_re_m,cbox_le_m);
}else if(cbox_re_m=="Y"&&cbox_le_m=="Y"){
re_check_m="Y";
le_check_m="Y";
orderClick("confirm",cbox_re_m,cbox_le_m);
}
if(error_msg != ""){
jQuery(".error_msg").html(error_msg);
}else{
// show remark text
var remarks_re=jQuery('input[name="remarks_re"]').val();
jQuery("#remarks_re").html(remarks_re);
var remarks_le=jQuery('input[name="remarks_le"]').val();
jQuery("#remarks_le").html(remarks_le);
}
});
// jQuery(".d-none").each(function() {
// jQuery(this).parent().parent().parent().parent().hide();
// });
function show_next_page(page){
if(page=="cal"){
console.log("re_ajax_check="+re_ajax_check+"||le_ajax_check="+le_ajax_check);
if(re_ajax_check=="N"){
jQuery("#cbox_re_m").hide();
jQuery(re_all_input_m).each(function() {
jQuery(this).parent().parent().hide();
});
jQuery(re_all_input2_m).each(function() {
jQuery(this).parent().parent().hide();
});
jQuery(".confirm_title_re").hide();
jQuery(".confirm_val_re").hide();
jQuery(".lens_val_re").css("visibility","hidden");
}else{
jQuery("#cbox_re_m").show();
jQuery(re_all_input_m).each(function() {
jQuery(this).parent().parent().show();
});
jQuery(re_all_input2_m).each(function() {
jQuery(this).parent().parent().show();
});
jQuery(".confirm_title_re").show();
jQuery(".confirm_val_re").show();
jQuery(".lens_val_re").css("visibility","visible");
}
if(le_ajax_check=="N"){
jQuery("#cbox_le_m").hide();
jQuery(le_all_input_m).each(function() {
jQuery(this).parent().parent().hide();
});
jQuery(le_all_input2_m).each(function() {
jQuery(this).parent().parent().hide();
});
jQuery(".confirm_title_le").hide();
jQuery(".confirm_val_le").hide();
jQuery(".lens_val_le").css("visibility","hidden");
}else{
jQuery("#cbox_le_m").show();
jQuery(le_all_input_m).each(function() {
jQuery(this).parent().parent().show();
});
jQuery(le_all_input2_m).each(function() {
jQuery(this).parent().parent().show();
});
jQuery(".confirm_title_le").show();
jQuery(".confirm_val_le").show();
jQuery(".lens_val_le").css("visibility","visible");
}
// show Modifiction Page
jQuery(".thwepo-extra-options.thwepo_variable.company").hide();
jQuery(".thwepo-extra-options.thwepo_variable.company tbody tr:nth-child(10)").hide();
jQuery(".thwepo-extra-options.thwepo_variable.company tbody tr:nth-child(9)").hide();
jQuery(".thwepo-extra-options.thwepo_variable.order").hide();
jQuery("#btn_cal").hide();
jQuery("#patient_id_val").html(jQuery('input[name="patient_id"]').val());
jQuery("#patient_name_val").html(jQuery('input[name="patient_name"]').val());
jQuery(".patient_val").hide();
jQuery("#modification").show();
jQuery(".thwepo-extra-options.thwepo_variable.modification0").show();
jQuery(".thwepo-extra-options.thwepo_variable.modification1").show();
jQuery(".thwepo-extra-options.thwepo_variable.modification2").show();
// jQuery([document.documentElement, document.body]).animate({
// scrollTop: jQuery("#modification").offset().top-150
// }, 500);
// jQuery(".single-product .woocommerce-variation-add-to-cart .variations").css("display","block !important");
}else if(page=="confirm"){
// update all disabled field to enable
if(re_check){
jQuery('input[name="model_re"]').removeAttr('disabled').val(model_re);
jQuery('input[name="material_re"]').removeAttr('disabled').val(material_re);
jQuery('input[name="design_re"]').removeAttr('disabled').val(design_re);
jQuery('input[name="bc_design_re"]').removeAttr('disabled').val(bc_design_re);
jQuery('input[name="ld_re"]').removeAttr('disabled').val(ld_re);
jQuery('input[name="lp_re"]').removeAttr('disabled').val(lp_re);
jQuery('input[name="thickness_re"]').removeAttr('disabled').val(thickness_re);
jQuery('input[name="bc_width_re"]').removeAttr('disabled').val(bc_width_re);
jQuery('input[name="bc_flat_re2"]').removeAttr('disabled').val(bc_flat_re);
jQuery('input[name="bc_steep_re2"]').removeAttr('disabled').val(bc_steep_re);
jQuery('input[name="ac1_flat_re"]').removeAttr('disabled').val(ac1_flat_re);
jQuery('input[name="ac1_steep_re"]').removeAttr('disabled').val(ac1_steep_re);
jQuery('input[name="ac2_flat_re"]').removeAttr('disabled').val(ac2_flat_re);
jQuery('input[name="ac2_steep_re"]').removeAttr('disabled').val(ac2_steep_re);
jQuery('input[name="pc_flat_re2"]').removeAttr('disabled').val(pc_flat_re);
jQuery('input[name="pc_steep_re2"]').removeAttr('disabled').val(pc_steep_re);
if(urlParams.get('exchange')=="Y"){
jQuery('input[name="patient_id"]').removeAttr('disabled');
jQuery('input[name="patient_name"]').removeAttr('disabled');
jQuery('input[name="sph_re"]').removeAttr('disabled');
jQuery('input[name="cyl_re"]').removeAttr('disabled');
jQuery('input[name="axis_re"]').removeAttr('disabled');
jQuery('input[name="flat_k_re"]').removeAttr('disabled');
jQuery('input[name="steep_k_re"]').removeAttr('disabled');
jQuery('input[name="steep_k_axis_re"]').removeAttr('disabled')
jQuery('input[name="flat_e_re"]').removeAttr('disabled');
jQuery('input[name="steep_e_re"]').removeAttr('disabled');
// jQuery('input[name="hvid_re"]').removeAttr('disabled');
// jQuery('input[name="pupil_size_re"]').removeAttr('disabled');
}
}
if(le_check){
jQuery('input[name="model_le"]').removeAttr('disabled').val(model_le);
jQuery('input[name="material_le"]').removeAttr('disabled').val(material_le);