Subversion Repositories SmartDukaan

Rev

Rev 10715 | Rev 10814 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 10715 Rev 10789
Line 10... Line 10...
10
}
10
}
11
if(isset($carts->needInsuranceInfo) && $carts->needInsuranceInfo == 1){
11
if(isset($carts->needInsuranceInfo) && $carts->needInsuranceInfo == 1){
12
	$needInsuranceInfo = $carts->needInsuranceInfo;
12
	$needInsuranceInfo = $carts->needInsuranceInfo;
13
	$this->session->set_userdata('needInsuranceInfo',$carts->needInsuranceInfo);
13
	$this->session->set_userdata('needInsuranceInfo',$carts->needInsuranceInfo);
14
}
14
}
-
 
15
if(isset($carts->locationServiceable) && $carts->locationServiceable == 1){
-
 
16
	$locationServiceable = false;
-
 
17
	$this->session->set_userdata('locationServiceable',$carts->locationServiceable);
-
 
18
}
15
//print_r($carts);
19
//print_r($carts);
16
?>
20
?>
17
    <div class="shipping-head clearfix">
21
    <div class="shipping-head clearfix">
18
      <div class="shipping">Shipping</div>
22
      <div class="shipping">Shipping</div>
19
      <!-- <span></span> -->
23
      <!-- <span></span> -->
Line 176... Line 180...
176
		  		var storeInfo = <?php echo json_encode($storeInfo);?>;
180
		  		var storeInfo = <?php echo json_encode($storeInfo);?>;
177
		  <?php } ?>
181
		  <?php } ?>
178
		  <?php if(isset($needInsuranceInfo) && !empty($needInsuranceInfo)){?>
182
		  <?php if(isset($needInsuranceInfo) && !empty($needInsuranceInfo)){?>
179
		  		var insuranceInfo = <?php echo $needInsuranceInfo;?>;
183
		  		var insuranceInfo = <?php echo $needInsuranceInfo;?>;
180
		  <?php } ?>
184
		  <?php } ?>
-
 
185
		  <?php if(isset($carts->locationServiceableMessage) && !empty($carts->locationServiceableMessage)){?>
-
 
186
		  		var locationServiceable = false;
-
 
187
		  <?php } else{?>
-
 
188
		  		var locationServiceable = true;
-
 
189
		  <?php } ?>
181
		</script>
190
		</script>
182
191