You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
To ensure that we have reliable and constant store ids, we have to provide them in the csv instead of identify a stores with name and address. Since the address may change f.e. if the store moves then currently the store will be deleted and a new store will be created even it is the same store
Describe the solution you'd like
add a storeId to the csv
display this storeId in the table
add the store id to the storeConfig and make it mandatory
check that the storeId is unique
add the storeId field to the database table
use the storeId to update stores
The text was updated successfully, but these errors were encountered:
@seluianova
what we could also do is. If there is a store entry without a storeId, we create a uniqueStore id and push it to the database.
Since there is a csv export function planned, we could then export this storeId and use this file for the next import.
@f1sh1918
how will we update the list of accepting stores? for example, if new stores are added?
I assumed, not manually, but this csv for upload will be generated somehow from some other source?
if I understand correctly, and we do what you suggest, we will have to somehow merge our generated identifiers with externally provided identifiers...
maybe we should add an additional nullable column - externalId.
if provided - we will use it to manage favorites, update stores during import, etc.
if not provided - keep the current logic
Is your feature request related to a problem? Please describe.
To ensure that we have reliable and constant store ids, we have to provide them in the csv instead of identify a stores with name and address. Since the address may change f.e. if the store moves then currently the store will be deleted and a new store will be created even it is the same store
Describe the solution you'd like
The text was updated successfully, but these errors were encountered: