place_order_dlg.h 2.83 KB
#pragma once
#include "GridCtrl.h"
#include "resource.h"
#include "afxcmn.h"
#include "afxwin.h"
#include "afxbutton.h"
#include "../utility/win_http.h"
#include "etrade_edit_control.h"
#include <string>
#include "CellRange.h"
#include "GridCell.h"
#include <vector>

// PlaceOrderDlg 对话框

class PlaceOrderDlg : public CDialogEx
{
	DECLARE_DYNAMIC(PlaceOrderDlg)

	struct CardInfo
	{
		CString card_num;
		CString card_name;
		CString card_type;
	};

	struct CommInfo
	{
		int comm_id;
		long product_id;
		CString seller_card;
		CString seller_name;
		CString comm_name;
		CString price;
		CString count;
		CString unit;
		CString weight;
		CString total_money;
	};

public:
	PlaceOrderDlg(CWnd* pParent = NULL);   // 标准构造函数
	virtual ~PlaceOrderDlg();

	virtual BOOL OnInitDialog();
	virtual BOOL Create(LPCTSTR lpszTemplateName, CWnd* pParentWnd = NULL);
	afx_msg void OnSize(UINT nType, int cx, int cy);
	afx_msg void OnGetMinMaxInfo(MINMAXINFO* lpMMI);
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	afx_msg void OnPaint();
	afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
	afx_msg void OnBnClickedButtonPay();
	virtual BOOL PreTranslateMessage(MSG* pMsg);
	afx_msg void OnAcceleratorTab();
	afx_msg void OnAcceleratorEnter();
	afx_msg LRESULT OnEditKillFocus(WPARAM wParam, LPARAM lParam);
	afx_msg void OnAcceleratorDown();
	afx_msg void OnAcceleratorUp();
	afx_msg void OnSetFocus(CWnd* pOldWnd);
	afx_msg void OnBnClickedButtonSwipCard();
	afx_msg LRESULT DeleteComm(WPARAM wParam, LPARAM lParam);

// 对话框数据
	enum { IDD = IDD_DIALOG_PLACE_ORDER };

protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持

	DECLARE_MESSAGE_MAP()

private:
	void SetCtrlPos();
	void SetCtrlInitData();
	void InitList();
	void SortList();
	void EmptyCtrl(bool is_empty_buyer);
	void EnableCtrl(bool is_enable);

	int GetCommIndex();

	bool GetUserName(CString &name);
	void SetErrorMsg(CString &error);
	bool GetCardName(CString &num, CString &name, int type); //type =1是买家,2是买家
	bool GetCommName(CString &num, CString& card, CString &name, long &product_id);
private:
	CStatic owner_static_;
	CEditBox card_edit_;
	CEdit name_edit_;
	CStatic comm_static_;
	CEditBox comm_num_edit_;
	CEdit comm_name_edit_;
	CStatic unit_static_;
	CEditBox unit_edit_;
	CStatic real_unit_static;
	CStatic heavy_static_;
	CEditBox heavy_edit_;
	CStatic price_static_;
	CEditBox price_edit_;
	CStatic count_static_;
	CEditBox count_edit_;
	CButton pay_button_;
	CGridCtrl product_list_;
	CStatic total_money_static_;
	CStatic total_real_money_static_;
	CStatic error_static_;
	CStatic buyer_static_;
	CEditBox buyer_card_edit_;
	CEditBox buyer_name_edit_;
	CButton swip_card_button_;

	CPen line_pen_;
	CPoint line_point_[3];
	CBrush edit_brush_;

	HACCEL acce_;

	long product_id_;
	int buyer_card_type_;

	std::vector<CommInfo> comm_vec_;
	int comm_id_index_;
};