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.
53 lines
874 B
C++
53 lines
874 B
C++
#include "shop.h"
|
|
#include <QIcon>
|
|
#include "shopform.h"
|
|
#include "shopservice.h"
|
|
#include "settings/shopsettingsform.h"
|
|
#include "shop-odb.hxx"
|
|
|
|
Shop::Shop()
|
|
{
|
|
}
|
|
|
|
void Shop::initServiceUi()
|
|
{
|
|
m_ui = new ShopForm();
|
|
m_service = new ShopService();
|
|
m_settingsUi = new ShopSettingsForm();
|
|
}
|
|
|
|
QIcon Shop::pluginIcon()
|
|
{
|
|
return QIcon(":/icons/shop.svg");
|
|
}
|
|
|
|
QWidget *Shop::ui()
|
|
{
|
|
QWidget *uiWidget = IPlugin::ui();
|
|
|
|
if (uiWidget == NULL)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
qobject_cast<ShopForm*>(uiWidget)->loadLast();
|
|
qobject_cast<ShopForm*>(uiWidget)->fillRaceiptCombo();
|
|
qobject_cast<ShopForm*>(uiWidget)->loadButtons();
|
|
return uiWidget;
|
|
}
|
|
|
|
QTranslator *Shop::translator()
|
|
{
|
|
return translatorFrom(":/translations/shop_");
|
|
}
|
|
|
|
bool Shop::hasNumberSeries()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
QString Shop::numberSeriesPrefix()
|
|
{
|
|
return "PD";
|
|
}
|