|
@@ -125,6 +125,14 @@ class Customer extends Base
|
|
|
if (isset($email) && $email != "") {
|
|
|
$map['a.email'] = ['like', "%" . $email . "%"];
|
|
|
}
|
|
|
+ if (isset($country) && $country != "") {
|
|
|
+ $countyId = Db::name('countries')->where('country',$country)->column('id');
|
|
|
+ if ($countyId) {
|
|
|
+ $map['a.country'] = $countyId[0];
|
|
|
+ } else{
|
|
|
+ $map['a.country'] = $country;
|
|
|
+ }
|
|
|
+ }
|
|
|
$whereOr = [];
|
|
|
if (isset($type) && $type != '') {
|
|
|
$typeArr = explode(',',$type);
|
|
@@ -562,6 +570,14 @@ class Customer extends Base
|
|
|
if (isset($email) && $email != "") {
|
|
|
$map['a.email'] = ['like', "%" . $email . "%"];
|
|
|
}
|
|
|
+ if (isset($country) && $country != "") {
|
|
|
+ $countyId = Db::name('countries')->where('country',$country)->column('id');
|
|
|
+ if ($countyId) {
|
|
|
+ $map['a.country'] = $countyId[0];
|
|
|
+ } else{
|
|
|
+ $map['a.country'] = $country;
|
|
|
+ }
|
|
|
+ }
|
|
|
$whereOr = [];
|
|
|
if (isset($type) && $type != '') {
|
|
|
$typeArr = explode(',',$type);
|
|
@@ -660,6 +676,14 @@ class Customer extends Base
|
|
|
if (isset($email) && $email != "") {
|
|
|
$map['a.email'] = ['like', "%" . $email . "%"];
|
|
|
}
|
|
|
+ if (isset($country) && $country != "") {
|
|
|
+ $countyId = Db::name('countries')->where('country',$country)->column('id');
|
|
|
+ if ($countyId) {
|
|
|
+ $map['a.country'] = $countyId[0];
|
|
|
+ } else{
|
|
|
+ $map['a.country'] = $country;
|
|
|
+ }
|
|
|
+ }
|
|
|
$whereOr = [];
|
|
|
if (isset($type) && $type != '') {
|
|
|
$typeArr = explode(',',$type);
|
|
@@ -770,6 +794,14 @@ class Customer extends Base
|
|
|
if (isset($email) && $email != "") {
|
|
|
$map['a.email'] = ['like', "%" . $email . "%"];
|
|
|
}
|
|
|
+ if (isset($country) && $country != "") {
|
|
|
+ $countyId = Db::name('countries')->where('country',$country)->column('id');
|
|
|
+ if ($countyId) {
|
|
|
+ $map['a.country'] = $countyId[0];
|
|
|
+ } else{
|
|
|
+ $map['a.country'] = $country;
|
|
|
+ }
|
|
|
+ }
|
|
|
$whereOr = [];
|
|
|
if (isset($type) && $type != '') {
|
|
|
$typeArr = explode(',',$type);
|
|
@@ -872,6 +904,14 @@ class Customer extends Base
|
|
|
if (isset($email) && $email != "") {
|
|
|
$map['a.email'] = ['like', "%" . $email . "%"];
|
|
|
}
|
|
|
+ if (isset($country) && $country != "") {
|
|
|
+ $countyId = Db::name('countries')->where('country',$country)->column('id');
|
|
|
+ if ($countyId) {
|
|
|
+ $map['a.country'] = $countyId[0];
|
|
|
+ } else{
|
|
|
+ $map['a.country'] = $country;
|
|
|
+ }
|
|
|
+ }
|
|
|
$whereOr = [];
|
|
|
if (isset($type) && $type != '') {
|
|
|
$typeArr = explode(',',$type);
|
|
@@ -968,6 +1008,14 @@ class Customer extends Base
|
|
|
if (isset($email) && $email != "") {
|
|
|
$map['a.email'] = ['like', "%" . $email . "%"];
|
|
|
}
|
|
|
+ if (isset($country) && $country != "") {
|
|
|
+ $countyId = Db::name('countries')->where('country',$country)->column('id');
|
|
|
+ if ($countyId) {
|
|
|
+ $map['a.country'] = $countyId[0];
|
|
|
+ } else{
|
|
|
+ $map['a.country'] = $country;
|
|
|
+ }
|
|
|
+ }
|
|
|
if (isset($type) && $type != '') {
|
|
|
$typeArr = explode(',',$type);
|
|
|
for ($i = 0; $i < count($typeArr); $i++) {
|
|
@@ -1114,6 +1162,14 @@ class Customer extends Base
|
|
|
if (isset($email) && $email != "") {
|
|
|
$map['a.email'] = ['like', "%" . $email . "%"];
|
|
|
}
|
|
|
+ if (isset($country) && $country != "") {
|
|
|
+ $countyId = Db::name('countries')->where('country',$country)->column('id');
|
|
|
+ if ($countyId) {
|
|
|
+ $map['a.country'] = $countyId[0];
|
|
|
+ } else{
|
|
|
+ $map['a.country'] = $country;
|
|
|
+ }
|
|
|
+ }
|
|
|
$whereOr = [];
|
|
|
if (isset($type) && $type != '') {
|
|
|
$typeArr = explode(',',$type);
|
|
@@ -1207,6 +1263,14 @@ class Customer extends Base
|
|
|
if (isset($email) && $email != "") {
|
|
|
$map['a.email'] = ['like', "%" . $email . "%"];
|
|
|
}
|
|
|
+ if (isset($country) && $country != "") {
|
|
|
+ $countyId = Db::name('countries')->where('country',$country)->column('id');
|
|
|
+ if ($countyId) {
|
|
|
+ $map['a.country'] = $countyId[0];
|
|
|
+ } else{
|
|
|
+ $map['a.country'] = $country;
|
|
|
+ }
|
|
|
+ }
|
|
|
$whereOr = [];
|
|
|
if (isset($type) && $type != '') {
|
|
|
$typeArr = explode(',',$type);
|
|
@@ -1300,6 +1364,14 @@ class Customer extends Base
|
|
|
if (isset($email) && $email != "") {
|
|
|
$map['a.email'] = ['like', "%" . $email . "%"];
|
|
|
}
|
|
|
+ if (isset($country) && $country != "") {
|
|
|
+ $countyId = Db::name('countries')->where('country',$country)->column('id');
|
|
|
+ if ($countyId) {
|
|
|
+ $map['a.country'] = $countyId[0];
|
|
|
+ } else{
|
|
|
+ $map['a.country'] = $country;
|
|
|
+ }
|
|
|
+ }
|
|
|
$whereOr = [];
|
|
|
if (isset($type) && $type != '') {
|
|
|
$typeArr = explode(',',$type);
|