123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- #if !defined(AFX_BOOKING2_H__63B19490_E040_4F05_8B90_BABECD3FF6CF__INCLUDED_)
- #define AFX_BOOKING2_H__63B19490_E040_4F05_8B90_BABECD3FF6CF__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // Booking2.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // Booking2 dialog
- #include "BookingPage1.h"
- #include "BookingPage2.h"
- #include "BookingPage22.h"
- #include "BookingPage3.h"
- #include "BookingPage4.h"
- // Jeff:侧边栏 - 门市流程 - 开单对话框;
- class Booking2 : public CDialog
- {
- BOOL m_bSave;
- BookingPage1 m_page1; // 订单资料选项卡;
- #ifdef CHILD_VERSION
- BookingPage22 m_page2;
- #else
- BookingPage2 m_page2; // 客人资料选项卡;
- #endif
- BookingPage3 m_page3; // 其它资料选项卡;
- BookingPage4 m_page4; // 时间安排选项卡;
- // Construction
- public:
- void OnBUTsave2();
- CString m_id;
- int m_bModify; // =0:开单模式; =1:预约单(修改)
- Booking2(CWnd* pParent = NULL); // standard constructor
- enum { IDD = IDD_DLGBooking2 };
- public:
- virtual BOOL PreTranslateMessage(MSG* pMsg);
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- virtual BOOL OnInitDialog();
- virtual void OnOK();
- virtual void OnCancel();
- afx_msg void OnBUTinfo1();//订单资料;
- afx_msg void OnBUTinfo2();//客人资料;
- afx_msg void OnBUTinfo3();//其他资料;
- afx_msg void OnBUTclose();//关闭按钮
- afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
- afx_msg void OnBUTinfo4();//时间安排;
- afx_msg void OnBUTsave();// 保存订单;
- afx_msg void OnBUTnew(); // 新订单;
- afx_msg void OnBUTprint();
- afx_msg void OnBUTimport();//导入按钮;
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_BOOKING2_H__63B19490_E040_4F05_8B90_BABECD3FF6CF__INCLUDED_)
|