diff options
Diffstat (limited to 'interchange')
-rw-r--r-- | interchange/product.hxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/interchange/product.hxx b/interchange/product.hxx index b8e6714..2b6d12c 100644 --- a/interchange/product.hxx +++ b/interchange/product.hxx @@ -19,7 +19,8 @@ namespace QInterchange { CategoryRole, WeightRole, AuthorRole, - CrossSellRole + CrossSellRole, + ImageLargeRole }; Product() {} @@ -50,6 +51,8 @@ namespace QInterchange { for (size_t i = 0; i < crosssell->length; i++) crossSell << QString{crosssell->skus[i]}; } + if (product.image_large) + imageLarge = QString{product.image_large}; } QString sku; @@ -64,6 +67,7 @@ namespace QInterchange { double weight; QString author; QStringList crossSell; + QString imageLarge; }; } |