mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-20 22:53:49 +00:00
fix countrySelection multiselect with fetch async countries
edit context: display country for existing address new context: repair editPane, load countries note: adding id for country and postcode in address endpoint json
This commit is contained in:
@@ -381,10 +381,12 @@ export default {
|
||||
if (this.flag.suggestPane === true) {
|
||||
this.closeSuggestPane();
|
||||
}
|
||||
this.initForm();
|
||||
this.getCountries();
|
||||
this.flag.editPane = true;
|
||||
if (this.flag.showPane === true) {
|
||||
this.closeShowPane();
|
||||
}
|
||||
console.log('step2: open the Edit panel');
|
||||
this.initForm();
|
||||
this.getCountries(); // will open edit pane when resolve promise
|
||||
}
|
||||
},
|
||||
closeEditPane() {
|
||||
@@ -456,10 +458,11 @@ export default {
|
||||
|
||||
getCountries() {
|
||||
this.flag.loading = true;
|
||||
console.log('## GO');
|
||||
fetchCountries().then(
|
||||
countries => new Promise((resolve, reject) => {
|
||||
this.entity.loaded.countries = countries.results;
|
||||
this.flag.showPane = false;
|
||||
console.log('## COMPLETE !');
|
||||
this.flag.editPane = true;
|
||||
this.flag.loading = false;
|
||||
resolve()
|
||||
|
Reference in New Issue
Block a user