geer-builder 1.2.471 → 1.2.472
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/GCashOut.vue +1 -1
- package/dialogs/CashoutStatusDialog.vue +4 -1
- package/package.json +1 -1
package/GCashOut.vue
CHANGED
|
@@ -199,7 +199,7 @@ export default {
|
|
|
199
199
|
if(this.public_settings.hasOwnProperty('cashout_convertion_ph') && this.public_settings.cashout_convertion_ph.active == true)
|
|
200
200
|
{
|
|
201
201
|
this.convert_rate = this.public_settings.cashout_convertion_ph.rate;
|
|
202
|
-
this.convert_currency =
|
|
202
|
+
this.convert_currency = "PHP";
|
|
203
203
|
this.convert_cashout = true;
|
|
204
204
|
}
|
|
205
205
|
}
|
|
@@ -39,6 +39,8 @@
|
|
|
39
39
|
import DB_MEMBER_CASHOUT from '../models/DB_MEMBER_CASHOUT';
|
|
40
40
|
import { formatDate } from '../utilities/DateUtils';
|
|
41
41
|
import GlobalMixins from '../mixins/global_mixins';
|
|
42
|
+
import DB_SETTINGS from '../models/DB_SETTINGS';
|
|
43
|
+
|
|
42
44
|
|
|
43
45
|
|
|
44
46
|
export default
|
|
@@ -140,7 +142,8 @@ export default
|
|
|
140
142
|
}),
|
|
141
143
|
async mounted()
|
|
142
144
|
{
|
|
143
|
-
this.public_settings = await this.$_getData('public_settings');
|
|
145
|
+
// this.public_settings = await this.$_getData('public_settings');
|
|
146
|
+
await this.$bind('public_settings', new DB_SETTINGS().doc('public_settings'));
|
|
144
147
|
await this.getCashoutList()
|
|
145
148
|
|
|
146
149
|
},
|