geer-builder 1.2.623 → 1.2.624

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.
Files changed (2) hide show
  1. package/GCheckout.vue +13 -1
  2. package/package.json +1 -1
package/GCheckout.vue CHANGED
@@ -1210,7 +1210,19 @@ export default {
1210
1210
  params.append("dimwidth", total_item_width);
1211
1211
  params.append("dimheight", total_item_height);
1212
1212
  }
1213
- params.append("province", this.shipping_address.province.reg_code);
1213
+
1214
+ if(this.shipping_address.province.reg_code == '13')
1215
+ {
1216
+ params.append("province", this.shipping_address.province.reg_code);
1217
+ console.log(this.shipping_address.province.reg_code, 'reg_code');
1218
+
1219
+ }
1220
+ else
1221
+ {
1222
+ params.append("province", this.shipping_address.province.prov_code);
1223
+ console.log(this.shipping_address.province.prov_code, 'prov_code');
1224
+ }
1225
+
1214
1226
  // params.append("province", this.shipping_address.province.prov_code);
1215
1227
  params.append("city", this.shipping_address.city.mun_code);
1216
1228
  params.append("brgy", this.shipping_address.barangay.brgy_code);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "geer-builder",
3
- "version": "1.2.623",
3
+ "version": "1.2.624",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {