address-client 3.2.67 → 3.2.68

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.
@@ -689,8 +689,7 @@
689
689
  data.f_pcd=this.findbyid(this.pcdslist,this.model.f_pcd_id).f_pcd
690
690
  data.f_street=this.findbyid(this.streetslist,this.model.f_street_id).f_street
691
691
  data.f_residential_area=this.findbyid(this.areaslist,this.model.f_residential_area_id).f_residential_area
692
- data.f_address = data.f_street
693
- + data.f_residential_area +
692
+ data.f_address = data.f_residential_area +
694
693
  data.f_building + data.f_building_suffix
695
694
  + data.f_unit + data.f_unit_suffix
696
695
  + data.f_floor + data.f_floor_suffix
@@ -771,7 +770,7 @@
771
770
  this.model.f_pcd=this.findbyid(this.pcdslist,this.model.f_pcd_id).f_pcd
772
771
  this.model.f_street=this.findbyid(this.streetslist,this.model.f_street_id).f_street
773
772
  this.model.f_residential_area=this.findbyid(this.areaslist,this.model.f_residential_area_id).f_residential_area
774
- this.model.f_address = this.model.f_street + this.model.f_residential_area + (this.model.f_building?this.model.f_building +this.model.f_building_suffix:'') + (this.model.f_unit?this.model.f_unit +this.model.f_unit_suffix:'') + (this.model.f_floor?this.model.f_floor +this.model.f_floor_suffix:'') + this.model.f_room + this.model.f_room_suffix
773
+ this.model.f_address = this.model.f_residential_area + (this.model.f_building?this.model.f_building +this.model.f_building_suffix:'') + (this.model.f_unit?this.model.f_unit +this.model.f_unit_suffix:'') + (this.model.f_floor?this.model.f_floor +this.model.f_floor_suffix:'') + this.model.f_room + this.model.f_room_suffix
775
774
  }
776
775
  await this.$resetpost('rs/logic/address_updateuseraddress', this.model)
777
776
  },