geer-builder 1.2.577 → 1.2.580

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/GLogin.vue CHANGED
@@ -190,6 +190,7 @@ export default
190
190
  },
191
191
  async submitLogin()
192
192
  {
193
+
193
194
  /* start login */
194
195
  const AccountClass = new FAccountClass();
195
196
 
@@ -198,7 +199,7 @@ export default
198
199
  if(!this.is_submitting)
199
200
  {
200
201
  this.is_submitting = true;
201
-
202
+
202
203
  let slot_info = await this.db_slot.get(this.form_data.email.toUpperCase());
203
204
 
204
205
  if(slot_info)
@@ -211,9 +212,15 @@ export default
211
212
  let update = await this.$_fbCall('memberUpdateAuth', this.form_data);
212
213
  }
213
214
 
214
- await AccountClass.signIn(this.form_data.email, this.form_data.password).then((res) =>
215
+ let disable_verified = false;
216
+ if(this.public_settings.hasOwnProperty("disable_login_verified") && this.public_settings.disable_login_verified == true)
217
+ {
218
+ disable_verified = true;
219
+ }
220
+
221
+ await AccountClass.signIn(this.form_data.email, this.form_data.password, disable_verified).then((res) =>
215
222
  {
216
- if(res.hasOwnProperty('verified') && !res.verified)
223
+ if(res.hasOwnProperty('verified') && !res.verified && disable_verified == false)
217
224
  {
218
225
  this.is_resend_dialog = true;
219
226
  }
package/GSlotWallet.vue CHANGED
@@ -63,9 +63,11 @@
63
63
 
64
64
  <div class="setion-holder">
65
65
  <q-btn size="12px" class="full-width q-pa-sm text-primary" flat v-if="show_points_history == true" @click="is_points_logs_dialog_open=true;">
66
- <q-icon class="q-mr-sm" name="fas fa-wallet" size="16px"></q-icon>
66
+ <div class="icon-holder" v-if="!is_company_ultrapro">
67
+ <q-icon class="q-mr-sm" name="fas fa-wallet" size="16px"></q-icon>
68
+ </div>
67
69
  <div v-if="is_company_ultrapro">Points History</div>
68
- <div>Points Logs</div>
70
+ <div v-else>Points Logs</div>
69
71
  </q-btn>
70
72
  </div>
71
73
 
@@ -15,7 +15,7 @@ export default class AccountClass
15
15
  {
16
16
  console.log("Account Has Been Signed Out");
17
17
  }
18
- async signIn(email, password)
18
+ async signIn(email, password, disable_verified = false)
19
19
  {
20
20
  // await DB.clearPersistence().catch(error =>
21
21
  // {
@@ -29,8 +29,17 @@ export default class AccountClass
29
29
  user_info = user_info.docs[0].data();
30
30
  if(user_info.hasOwnProperty('verified') && !user_info.verified)
31
31
  {
32
- return {verified: user_info.hasOwnProperty('verified') ? user_info.verified : true};
32
+ if(disable_verified == true)
33
+ {
34
+
35
+ }
36
+ else
37
+ {
38
+ return {verified: user_info.hasOwnProperty('verified') ? user_info.verified : true};
39
+ }
33
40
  }
41
+
42
+
34
43
  }
35
44
  return new Promise(async (resolve, reject) =>
36
45
  {
@@ -80,6 +80,8 @@
80
80
  <!-- <div style="color:black;">Tracking Number:</div> <div style="color:black;font-weight:600">{{list.tracking_number}}</div> -->
81
81
  <!-- <div>Status: {{list.status == "cancelled" ? "Cancelled" : ""}}</div> -->
82
82
  <div class="methods">Payment Method: {{list.payment_method.payment_method_label }}</div>
83
+ <div class="methods" v-if="list.hasOwnProperty('reject_reason')">Reject Reason: {{list.reject_reason}}</div>
84
+
83
85
  <!-- <div style="margin-left:auto;padding-left:10px;margin-right:10px;">Shipping Fee: {{main_currency}} {{$_formatNumber(list.orders.shipping_fee, { decimal: 2})}}</div>
84
86
  <div style="padding-left:10px;margin-right:10px;border-left: 1px solid rgb(194, 189, 189);" v-if="public_settings.hasOwnProperty('custom_ecommerce_fee')">{{public_settings.custom_ecommerce_fee.label}}: {{main_currency}} {{$_formatNumber(list.orders[public_settings.custom_ecommerce_fee.id], { decimal: 2})}}</div>
85
87
  <div style="padding-left:10px;border-left: 1px solid rgb(194, 189, 189);">Order Total ({{list.orders.total_quantity}} Item): {{main_currency}} {{$_formatNumber(list.orders.order_total, { decimal: 2})}}</div> -->
@@ -375,6 +377,7 @@ export default {
375
377
  color:grey;
376
378
  background: white;
377
379
  width: 100%;
380
+ justify-content: space-between;
378
381
  }
379
382
  }
380
383
  </style>
@@ -77,6 +77,7 @@
77
77
  </div>
78
78
  <div class="order-total">
79
79
  <div class="methods">Payment Method: {{list.payment_method.payment_method_label }}</div>
80
+ <div class="methods" v-if="list.hasOwnProperty('reject_reason')">Reject Reason: {{list.reject_reason}}</div>
80
81
  <!-- <div>Order Total ({{product_list[i].quantity}} Item): {{main_currency}} {{order_total}}</div> -->
81
82
  <!-- <div style="color:black;">Tracking Number:</div> <div style="color:black;font-weight:600">{{list.tracking_number}}</div> -->
82
83
  <!-- <div style="margin-left:auto;margin-right:10px;">Shipping Fee: {{main_currency}} {{$_formatNumber(list.orders.shipping_fee, { decimal: 2})}}</div>
@@ -372,6 +373,7 @@ export default {
372
373
  color:grey;
373
374
  background: white;
374
375
  width: 100%;
376
+ justify-content: space-between;
375
377
  }
376
378
  }
377
379
  .mobile-onlyy{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "geer-builder",
3
- "version": "1.2.577",
3
+ "version": "1.2.580",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {