new plugin commodity implemented

This commit is contained in:
Zdenek Jonak
2016-03-02 23:26:37 +01:00
parent 4b8d790ea8
commit a1f92c9f40
24 changed files with 597 additions and 10 deletions
+2 -1
View File
@@ -1,7 +1,8 @@
#include "accservice.h"
#include <define.h>
AccService::AccService()
AccService::AccService(QObject *parent)
:QObject(parent)
{
m_price = 0;
m_active = 1;
+1 -1
View File
@@ -24,7 +24,7 @@ class AccService : public QObject
Q_PROPERTY(Enums::VatType vatType READ vatType WRITE setVatType)
public:
AccService();
AccService(QObject *parent = 0);