diff options
| author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2020-06-15 08:59:24 +0800 | 
|---|---|---|
| committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2020-06-15 08:59:24 +0800 | 
| commit | bc3a49fb9a722e224973898ced5b8d1fe0a82ecd (patch) | |
| tree | cb271f639182345fb8c20af28180e5f7e995a1a8 /qicclient | |
| parent | 69572ddf45733862bc6b623091af25e396b0d06f (diff) | |
Add prodGroup member to Product struct
Diffstat (limited to 'qicclient')
| -rw-r--r-- | qicclient/product.hxx | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/qicclient/product.hxx b/qicclient/product.hxx index d07339d..3b47241 100644 --- a/qicclient/product.hxx +++ b/qicclient/product.hxx @@ -13,6 +13,7 @@ namespace ICClient {  			CommentRole,  			ImageRole,  			PriceRole, +			ProdGroupRole,  			WeightRole,  			AuthorRole  		}; @@ -29,6 +30,8 @@ namespace ICClient {  				comment = QString{product->comment};  			if (product->image)  				image = QString{product->image}; +			if (product->prod_group) +				prodGroup = QString{product->prod_group};  			if (product->author)  				author = QString{product->author};  		} @@ -38,6 +41,7 @@ namespace ICClient {  		QString comment;  		QString image;  		double price; +		QString prodGroup;  		double weight;  		QString author;  	};  |