summaryrefslogtreecommitdiff
path: root/interchange/ord.hxx
blob: 422d6346ba06deeaa637a7490fa4f69a3a3dac97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#ifndef INTERCHANGE_ORD_HXX
#define INTERCHANGE_ORD_HXX

#include <QAbstractListModel>
#include <interchange/ord.h>
#include "member.hxx"
#include "product.hxx"

namespace QInterchange {

	struct Item
	{
		enum ItemRoles {
			QuantityRole = Product::PriceRole + 1,
			NameRole
		};
		Item(interchange_ord_item item) :
			product{item.product},
			quantity{item.quantity},
			name{item.name} {}
		Product product;
		unsigned int quantity;
		QString name;
		bool operator==(Item const& item)
		{
			return product.sku == item.product.sku;
		}
	};

	class Ord : public QAbstractListModel
	{
		Q_OBJECT
		Q_PROPERTY(int rowCount READ rowCount NOTIFY rowCountChanged)
		Q_PROPERTY(double subtotal READ subtotal NOTIFY subtotalChanged)
		Q_PROPERTY(double shipping READ shipping NOTIFY shippingChanged)
		Q_PROPERTY(double totalCost READ totalCost NOTIFY totalCostChanged)

		public:
			explicit Ord(struct interchange_ord_order order,
					QObject* parent = nullptr);
			~Ord() {}
			int rowCount(QModelIndex const& parent = QModelIndex()) const Q_DECL_OVERRIDE;
			QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const
				Q_DECL_OVERRIDE;
			double subtotal() const { return m_subtotal; }
			double shipping() const { return m_shipping; }
			double totalCost() const { return m_totalCost; }
			void setProfile(QString const& profile);
		public slots:
			void remove(const QString &name,
					const QString &orderPage = "",
					const QString &nextPage = "");
			void checkout(const Member& member);
		signals:
			void rowCountChanged();
			void subtotalChanged();
			void shippingChanged();
			void totalCostChanged();
			void removed(const QString &response);
			void gotTransaction(QString const& response);

		protected:
			QHash<int, QByteArray> roleNames() const Q_DECL_OVERRIDE;
			void emitRemoval(const QString &response);
			void emitTransaction(QString const& response);

		private:
			void addItem(Item const& item);
			QList<Item> items;
			QString profile;
			double m_subtotal;
			double m_shipping;
			double m_totalCost;
	};

}

#endif