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.
47 lines
635 B
C++
47 lines
635 B
C++
9 years ago
|
#include "directsaleitem.h"
|
||
|
|
||
|
DirectSaleItem::DirectSaleItem(QObject *parent) : QObject(parent)
|
||
|
{
|
||
|
m_count = 1;
|
||
|
}
|
||
|
|
||
|
int DirectSaleItem::id()
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
QString DirectSaleItem::name()
|
||
|
{
|
||
|
return m_name;
|
||
|
}
|
||
|
|
||
|
QDecDouble DirectSaleItem::unitPrice()
|
||
|
{
|
||
|
return m_unitPrice;
|
||
|
}
|
||
|
|
||
|
QString DirectSaleItem::pluginId()
|
||
|
{
|
||
|
return "";
|
||
|
}
|
||
|
|
||
|
int DirectSaleItem::count() const
|
||
|
{
|
||
|
return m_count;
|
||
|
}
|
||
|
|
||
|
void DirectSaleItem::setCount(int count)
|
||
|
{
|
||
|
m_count = count;
|
||
|
}
|
||
|
|
||
|
void DirectSaleItem::setName(const QString &name)
|
||
|
{
|
||
|
m_name = name;
|
||
|
}
|
||
|
|
||
|
void DirectSaleItem::setUnitPrice(const QDecDouble &unitPrice)
|
||
|
{
|
||
|
m_unitPrice = unitPrice;
|
||
|
}
|