76 lines
1.7 KiB
C++
76 lines
1.7 KiB
C++
#if !defined(AFX_WODLG_H__CA8D53C1_2FB6_11D4_964F_00C0F02C4B69__INCLUDED_)
|
|
#define AFX_WODLG_H__CA8D53C1_2FB6_11D4_964F_00C0F02C4B69__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
// WODlg.h : header file
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CWODlg dialog
|
|
#include "xtabctrl.h"
|
|
|
|
#include "gzrset.h"
|
|
|
|
|
|
#include "wotabproblem.h"
|
|
#include "wotabparts.h"
|
|
#include "wotabsubrepair.h"
|
|
#include "wotablabour.h"
|
|
|
|
class CWODlg : public CDialog
|
|
{
|
|
// Construction
|
|
public:
|
|
void Security();
|
|
bool * bModified;
|
|
CString m_strClientID;
|
|
~CWODlg();
|
|
|
|
CString m_strProblemID;
|
|
CString m_strWorkorderID;
|
|
void SetIDValues(CString strWO, CString strPROB, CString strClient, bool* modified);
|
|
|
|
|
|
CWODlg(CWnd* pParent = NULL); // standard constructor
|
|
CWOTABProblem* m_pTabProblem;
|
|
CWOTABParts* m_pTabParts;
|
|
CWOTABSubRepair* m_pTabSubRepair;
|
|
CWOTABLabour* m_pTabLabour;
|
|
bool m_bAddMode;
|
|
CSpApp* m_pApp;
|
|
GZRset* rs;
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CWODlg)
|
|
enum { IDD = IDD_WO };
|
|
CXTabCtrl m_tab;
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CWODlg)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CWODlg)
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnBtndone();
|
|
afx_msg void OnBtncancel();
|
|
virtual void OnOK();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_WODLG_H__CA8D53C1_2FB6_11D4_964F_00C0F02C4B69__INCLUDED_)
|