📄 inputquery.cpp
字号:
// InputQuery.cpp: implementation of the CInputQuery class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "MyProject.h"
#include "InputQuery.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CInputQuery::CInputQuery()
{
}
CInputQuery::~CInputQuery()
{
}
void CInputQuery::Init()
{
this->m_StaTitle.SetWindowText("入库日期");
this->SetWindowText("入库信息查询");
this->m_DataBaseName="SELECT a.入库票号, b.全称 AS 供应商全称, a.入库日期, a.合计数量, a.合计金额,e.仓库名称 AS 入库仓库, d.姓名 AS 经手人,c.用户名 AS 操作员 FROM 入库记录表 a INNER JOIN 往来单位信息表 b ON a.供应商编号 = b.编号 INNER JOIN 操作员信息表 c ON a.操作员 = c.操作员编号 INNER JOIN 员工信息表 d ON a.经手人 = d.编号 INNER JOIN 仓库信息表 e ON a.入库仓库 = e.编号";
this->m_ListDataBaseName="SELECT b.名称 AS 商品名称, b.规格, b.产地,b.计量单位, a.入库数量, a.入库单价,a.入库票号 FROM 商品信息表 b INNER JOIN 入库明细表 a ON b.条形码 = a.商品条型码";
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -