#include #include #include "qicclient/basket.hxx" namespace ICClient { int Basket::rowCount(QModelIndex const& parent) const { Q_UNUSED(parent) return items.count(); } QVariant Basket::data(QModelIndex const& index, int role) const { auto row = index.row(); if (row < 0 || row >= items.count()) return QVariant(); auto item = items[row]; switch (role) { case Product::SkuRole: return item.product.sku; case Product::DescriptionRole: return item.product.description; case Product::PriceRole: return item.product.price; case Item::QuantityRole: return item.quantity; default: return QVariant(); } } QHash Basket::roleNames() const { return QHash{ {Product::SkuRole, "sku"} , {Product::DescriptionRole, "description"} , {Product::PriceRole, "price"} , {Item::QuantityRole, "quantity"} }; } void Basket::addItem(Item const& item) { auto product = item.product; auto iterator = std::find_if(items.begin(), items.end() , [&product](Item const& item) { return product.sku == item.product.sku; }); if (iterator != items.end()) { auto index = items.indexOf(*iterator); beginRemoveRows(QModelIndex(), index, index); items.removeAt(index); endRemoveRows(); } beginInsertRows(QModelIndex(), rowCount(), rowCount()); items << item; endInsertRows(); emit rowCountChanged(); /* m_subtotal = order->subtotal; m_totalCost = order->total_cost; */ } }