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.
62 lines
1.8 KiB
C++
62 lines
1.8 KiB
C++
#ifndef SHOPSERVICE_H
|
|
#define SHOPSERVICE_H
|
|
|
|
#include <QSharedPointer>
|
|
|
|
#include <core.h>
|
|
#include <settings/globalsettings.h>
|
|
|
|
#include "data/shop-data.h"
|
|
#include "shopitem.h"
|
|
|
|
#include "shop_global.h"
|
|
|
|
#define ROUNDING_ITEM -9999
|
|
|
|
class PayDialog;
|
|
class ShopForm;
|
|
|
|
void SHOPSHARED_EXPORT payVoucherFromUI(VoucherPtr voucher, PayDialog *dialog, ShopForm *form = NULL);
|
|
|
|
class SHOPSHARED_EXPORT ShopService : public Service<Voucher>
|
|
{
|
|
public:
|
|
ShopService();
|
|
VoucherPtr createVoucher();
|
|
void addShopItem(VoucherPtr voucher, QSharedPointer<IShopItem> item, int count);
|
|
void calculate(VoucherPtr voucher);
|
|
void calculateItem(VoucherItemPtr item);
|
|
void loadItems(VoucherPtr voucher);
|
|
void pay(VoucherPtr voucher);
|
|
void moveItems(QList<VoucherItemPtr> items, VoucherPtr source, VoucherPtr target);
|
|
void updateRelatedItem(VoucherItem* item, int countAdded);
|
|
bool processEet(VoucherPtr voucher, QString &message);
|
|
void setEetOnline(bool online);
|
|
bool isEetOnline();
|
|
bool isEetEnabled();
|
|
void roundVoucher(VoucherPtr voucher);
|
|
VoucherItemPtr roundingItem(VoucherPtr voucher);
|
|
QList<VoucherPtr> savedVouchers();
|
|
QList<VoucherPtr> tempVouchers();
|
|
QList<VoucherPtr> paiedVouchers();
|
|
QList<VoucherPtr> vouchersForEet();
|
|
QList<ShopItemPtr> allSellableItems();
|
|
VoucherSum unpaidSummary();
|
|
VoucherSum unsendEET();
|
|
|
|
private:
|
|
QDecDouble includeVat(QDecDouble price, Enums::VatType vatType);
|
|
QDecDouble excludeVat(QDecDouble price, Enums::VatType vatType);
|
|
void loadSettings();
|
|
|
|
QSharedPointer<GlobalSettings> m_gs;
|
|
QDecDouble vatRate(Enums::VatType vatType);
|
|
|
|
public:
|
|
void saveVoucher(VoucherPtr entity);
|
|
void updateVoucher(VoucherPtr entity);
|
|
void eraseVoucher(VoucherPtr entity);
|
|
};
|
|
|
|
#endif // SHOPSERVICE_H
|