-
Notifications
You must be signed in to change notification settings - Fork 39
Description
User story
As a merchant,
I want the template of the exported product list to be autogenerated
so I don't have to worry about it.
Acceptance criteria
- There are CSV files according to the Google Shopping CSV template (see below)
- Whenever a new Sales Channel is created, the template is automatically added to the ProductExport when created in the Administration.
- There is an integration test, that checks the validity of the generated CSV file.
case class GoogleShoppingProduct( id: String, item_group_id: Option[String], title: String, link: String, mpn: Option[String], brand: Option[String], gtin: Option[String], upc: Option[String], ean: Option[String], sale_price: Option[String], price: String, availability: String, google_product_category: Option[String], product_type: Option[String], image_link: String, additional_image_link: Option[String], description: String)