update 3_14_2020

This commit is contained in:
franknstayn
2020-03-14 01:17:24 -05:00
parent 5eeefa5587
commit e57209bc64
3 changed files with 6 additions and 6 deletions

View File

@@ -112,7 +112,7 @@ class PaypalController extends Controller {
// $order_subtotal = $updated_getSubtotal[0]->Subtotal;
$order_grandtotal = $updated_getSubtotal[0]->Subtotal;
if($grouped_item[0]->StoreId == 76 || $grouped_item[0]->StoreId == 78 || $grouped_item[0]->StoreId == 111 || $grouped_item[0]->StoreId == 131 || $grouped_item[0]->StoreId == 30){
if($grouped_item[0]->StoreId == 76 || $grouped_item[0]->StoreId == 78 || $grouped_item[0]->StoreId == 111 || $grouped_item[0]->StoreId == 131 || $grouped_item[0]->StoreId == 30 || $grouped_item[0]->StoreId == 141){
$tax_value = 0;
}else{
$tax_value = 0.10;

View File

@@ -2,7 +2,7 @@
<table class="table" id="tableRow" style="font-size:12px;">
<thead>
<tr>
<th class="col-md-4">Name</th>
<th class="col-md-4">Name on Jersey</th>
<th class="col-md-2">Number</th>
<th class="col-md-3">Jersey Size</th>
<th class="col-md-3">Shorts Size</th>
@@ -12,7 +12,7 @@
<tbody id="orderTableBody">
<tr class="table-tr-0">
<td>
<input type="text" name="order_names[]" class="form-control input-sm inputName roster-input" placeholder="Name">
<input type="text" name="order_names[]" class="form-control input-sm inputName roster-input" placeholder="Name on Jersey">
</td>
<td>
<select class="form-control input-sm roster-input" name="order_number[]">

View File

@@ -13,7 +13,7 @@
<tr class="table-tr-0">
<td>
<select class="form-control input-sm order-size roster-input" name="order_jersey_size[]" data-row-number="1">
<option value="none">none</option>
<!-- <option value="none">none</option> !-->
@foreach($sizes_array as $size)
<option value="{{ $size->Size }}">{{ $size->SizeDisplay }}</option>
@endforeach
@@ -21,7 +21,7 @@
</td>
<td>
<select class="form-control input-sm order-size roster-input" name="order_shorts_size[]" data-row-number="1">
<option value="none">none</option>
<!-- <option value="none">none</option> !-->
@foreach($sizes_array as $size)
<option value="{{ $size->Size }}">{{ $size->SizeDisplay }}</option>
@endforeach