You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
C++
39 lines
1.1 KiB
C++
#ifndef SHOPSERVICE_H
|
|
#define SHOPSERVICE_H
|
|
|
|
#include <QSharedPointer>
|
|
|
|
#include <core.h>
|
|
#include <settings/globalsettings.h>
|
|
|
|
#include "data/shop-data.h"
|
|
#include "ishopitem.h"
|
|
|
|
class ShopService : public Service<Voucher>
|
|
{
|
|
public:
|
|
ShopService();
|
|
QSharedPointer<Voucher> createVoucher();
|
|
void addShopItem(QSharedPointer<Voucher> voucher, QSharedPointer<IShopItem> item, int count);
|
|
void calculate(QSharedPointer<Voucher> voucher);
|
|
void calculateItem(QSharedPointer<VoucherItem> item);
|
|
void loadItems(QSharedPointer<Voucher> voucher);
|
|
void pay(QSharedPointer<Voucher> voucher);
|
|
QList<QSharedPointer<Voucher> > savedVouchers();
|
|
QList<QSharedPointer<Voucher> > tempVouchers();
|
|
QList<QSharedPointer<Voucher> > paiedVouchers();
|
|
|
|
private:
|
|
QDecDouble includeVat(QDecDouble price, Enums::VatType vatType);
|
|
void loadSettings();
|
|
|
|
QSharedPointer<GlobalSettings> m_gs;
|
|
QDecDouble vatRate(Enums::VatType vatType);
|
|
|
|
public:
|
|
void saveVoucher(QSharedPointer<Voucher> entity);
|
|
void updateVoucher(QSharedPointer<Voucher> entity);
|
|
};
|
|
|
|
#endif // SHOPSERVICE_H
|