summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2020-06-14 17:03:51 +0800
committerꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2020-06-14 17:03:51 +0800
commit3ee30003e4ba237575c23ba9f585c9ca40d003e5 (patch)
tree2781e9e892ef4b44fae4bd955ea8dd853fc2c605
parent1f3b30fd4c989f69e01614b4a021546a8d69bb96 (diff)
Add weight member to product struct
-rw-r--r--catalog.cxx3
m---------libicclient0
-rw-r--r--qicclient/product.hxx5
3 files changed, 7 insertions, 1 deletions
diff --git a/catalog.cxx b/catalog.cxx
index 5180b23..8f73565 100644
--- a/catalog.cxx
+++ b/catalog.cxx
@@ -29,6 +29,8 @@ namespace ICClient {
return product.image;
case Product::PriceRole:
return product.price;
+ case Product::WeightRole:
+ return product.weight;
case Product::AuthorRole:
return product.author;
default:
@@ -44,6 +46,7 @@ namespace ICClient {
, {Product::CommentRole, "comment"}
, {Product::ImageRole, "image"}
, {Product::PriceRole, "price"}
+ , {Product::WeightRole, "weight"}
, {Product::AuthorRole, "author"}
};
}
diff --git a/libicclient b/libicclient
-Subproject b81dde02f6d31b559331f813102fd2d24d9efb8
+Subproject 66225020d3ef1e3825adfc9d4f9e38420f68546
diff --git a/qicclient/product.hxx b/qicclient/product.hxx
index 7ab2f99..97b13b2 100644
--- a/qicclient/product.hxx
+++ b/qicclient/product.hxx
@@ -13,12 +13,14 @@ namespace ICClient {
CommentRole,
ImageRole,
PriceRole,
+ WeightRole,
AuthorRole
};
Product(icclient_product* product) :
sku{product->sku},
- price{product->price}
+ price{product->price},
+ weight{product->weight}
{
if (product->description)
description = QString{product->description};
@@ -35,6 +37,7 @@ namespace ICClient {
QString comment;
QString image;
double price;
+ double weight;
QString author;
};