addproduct.ui.h~
来自「一个简单的pos机程序」· H~ 代码 · 共 40 行
H~
40 行
/****************************************************************************** ui.h extension file, included from the uic-generated form implementation.**** If you wish to add, delete or rename functions or slots use** Qt Designer which will update this file, preserving your code. Create an** init() function in place of a constructor, and a destroy() function in** place of a destructor.*****************************************************************************/#include ".ui/Addproduct.h"#include ".ui/productInfo.h"#include <qsqlcursor.h>#include <qsqlrecord.h>#include <qstring.h>#include <qmessagebox.h>void Form3::pushButton10_clicked(){ int err=0; QSqlCursor cur( "CommodityInfo" ); QSqlRecord *buffer = cur.primeInsert(); buffer->setValue( "ID", 10); buffer->setValue( "ComoCode", lineEdit4->text() ); buffer->setValue( "ComoName", lineEdit5->text() ); buffer->setValue( "ComoPrice", lineEdit8->text().toDouble() ); buffer->setValue( "ComoCount", spinBox3->value() ); buffer->setValue( "ComoDisc", spinBox5->value() ); buffer->setValue( "ComoClassNo", 1 ); err = cur.insert(); this->parent->dataTable9->refresh(QDataTable::RefreshAll);}void Form3::pushButton12_clicked(){ this->close();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?