mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-21 23:23:51 +00:00
activity: post new location on-the-fly
This commit is contained in:
@@ -104,6 +104,7 @@ export default {
|
||||
if (e.type === 'person' && e.current_household_address !== null){
|
||||
locations.push({
|
||||
type: 'location',
|
||||
onthefly: true,
|
||||
name: e.text,
|
||||
address: { id: e.current_household_address.id },
|
||||
locationType: locationType
|
||||
@@ -120,6 +121,7 @@ export default {
|
||||
if (e.type === 'thirdparty' && e.address !== null){
|
||||
locations.push({
|
||||
type: 'location',
|
||||
onthefly: true,
|
||||
name: e.text,
|
||||
address: { id: e.address.id },
|
||||
locationType: locationType
|
||||
@@ -134,7 +136,8 @@ export default {
|
||||
const accPeriodLocation = this.activity.accompanyingPeriod.location;
|
||||
return {
|
||||
type: 'location',
|
||||
name: '__AccompanyingCourseLocation__', //TODO not perfect...
|
||||
onthefly: true,
|
||||
name: '__AccompanyingCourseLocation__', //TODO not perfect... shoould show the address
|
||||
address: { id: accPeriodLocation.address_id }, //TODO is the id sufficient?
|
||||
locationType: locationType
|
||||
}
|
||||
|
Reference in New Issue
Block a user