| 1234567891011121314151617181920212223242526272829303132 |
- #include "boxtemlateone.h"
- BoxTemlateOne::BoxTemlateOne()
- {
- }
- QImage BoxTemlateOne::doPrinter(QSharedPointer<BoxInfo> box)
- {
- //TODO: 小宋,迁移打印 箱单的逻辑
- // return img;
- }
- QSize BoxTemlateOne::printSize()
- {
- return QSize(100,80);
- }
- PackTemlateOne::PackTemlateOne()
- {}
- QImage PackTemlateOne::doPrinter(QSharedPointer<PackInfo> pack)
- {
- //TODO: 小宋,迁移打印 码单的逻辑
- }
- QSize PackTemlateOne::printSize()
- {
- return QSize(100,80);
- }
|