123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589 |
- // DigitalWorkSet2.cpp : implementation file
- //
- #include "stdafx.h"
- #include "ylgl.h"
- #include "DigitalWorkSet2.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // DigitalWorkSet2 dialog
- DigitalWorkSet2::DigitalWorkSet2(CWnd* pParent /*=NULL*/)
- : CDialog(DigitalWorkSet2::IDD, pParent)
- {
- //{{AFX_DATA_INIT(DigitalWorkSet2)
- m_filter = _T("");
- m_check1 = FALSE;
- m_check2 = FALSE;
- m_check3 = FALSE;
- //}}AFX_DATA_INIT
- m_mode=0;
- m_checkwork=0;
- m_nAdd=0;
- if(g_bAllBranch)
- {
- m_nAdd=1;
- }
- }
- void DigitalWorkSet2::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(DigitalWorkSet2)
- DDX_Control(pDX, IDC_LIST1, m_List1);
- DDX_Text(pDX, IDC_EDIT1, m_filter);
- DDX_Check(pDX, IDC_CHECK1, m_check1);
- DDX_Check(pDX, IDC_CHECK2, m_check2);
- DDX_Check(pDX, IDC_CHECK3, m_check3);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(DigitalWorkSet2, CDialog)
- //{{AFX_MSG_MAP(DigitalWorkSet2)
- ON_BN_CLICKED(IDC_BUTTON1, OnButton1)
- ON_BN_CLICKED(IDC_BUTTON2, OnButton2)
- ON_BN_CLICKED(IDC_CHECK1, OnCheck1)
- ON_BN_CLICKED(IDC_CHECK2, OnCheck2)
- ON_NOTIFY(NM_CUSTOMDRAW, IDC_LIST1, OnCustomdrawList)
- ON_BN_CLICKED(IDC_CHECK3, OnCheck3)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // DigitalWorkSet2 message handlers
- extern BOOL CALLBACK EnumChildProc2(HWND hwnd,LPARAM lParam);
- BOOL DigitalWorkSet2::OnInitDialog()
- {
- CDialog::OnInitDialog();
- // TODO: Add extra initialization here
- if(m_mode)SetWindowText("我的工作");
- CRect rc2;
- GetWindowRect(rc2);
- ::MoveWindow(m_hWnd,g_rc.left,g_rc.top,g_rc.Width(),g_rc.Height(),TRUE);
- g_WidthScale2 = (float)g_rc.Width()/(float)rc2.Width(); // new/Old
- g_HeightScale2 = (float)g_rc.Height()/(float)rc2.Height();
- EnumChildWindows(m_hWnd,(WNDENUMPROC)EnumChildProc2,0);
- if(g_bAllBranch==0)
- {
- #ifdef CHILD_VERSION
- m_List1.SetHeadings("订单号,100;家长姓名,100;宝宝姓名,100;初修,100;完成期限,100;精修,100;完成期限,100;设计,100;完成期限,100" );
- #else
- m_List1.SetHeadings("订单号,100;男宾姓名,100;女宾姓名,100;初修,100;完成期限,100;精修,100;完成期限,100;设计,100;完成期限,100" );
- #endif
- m_List1.LoadColumnInfo (170);
- }
- else
- {
- #ifdef CHILD_VERSION
- m_List1.SetHeadings("店名,100;订单号,100;家长姓名,100;宝宝姓名,100;初修,100;完成期限,100;精修,100;完成期限,100;设计,100;完成期限,100" );
- #else
- m_List1.SetHeadings("店名,100;订单号,100;男宾姓名,100;女宾姓名,100;初修,100;完成期限,100;精修,100;完成期限,100;设计,100;完成期限,100" );
- #endif
- m_List1.LoadColumnInfo (201);
- }
- if(g_bAllBranch==0)
- {
- if(g_bShowOK==0)
- {
- CString filter="status3='未取'";
- g_sendhead.bsql=0;
- g_sendhead.code[0]=137;
- g_sendhead.tabcount=1;
- g_pMainWnd->ProcessChatMessageRequest2(filter);if(g_bSendOK==0)return false;
- }
- else
- {
- g_sendhead.bsql=0;
- g_sendhead.code[0]=137;
- g_sendhead.tabcount=1;
- g_pMainWnd->ProcessChatMessageRequest2(1);if(g_bSendOK==0)return false;
- }
- DataToArray(&m_List1array);
- }
- else
- {
- //////////////数据汇总
- m_List1array.RemoveAll ();
- CString branch;
- for(int i=-1; i<g_brancharray.GetSize ()-1; i++)
- {
- if(i!=-1)
- {
- branch=g_brancharray.ElementAt (i).ElementAt (0);
- g_branchip=g_brancharray.ElementAt (i).ElementAt (1);
- g_pMainWnd->OnDisconnect();
- g_branchname=branch;
- g_bBranchModify=1;
- }
- else
- branch=g_brancharray.ElementAt (g_brancharray.GetSize ()-1).ElementAt (0);
- if(g_bShowOK==0)
- {
- CString filter="status3='未取'";
- g_sendhead.bsql=0;
- g_sendhead.code[0]=137;
- g_sendhead.tabcount=1;
- g_pMainWnd->ProcessChatMessageRequest2(filter);if(g_bSendOK==0)continue;
- }
- else
- {
- g_sendhead.bsql=0;
- g_sendhead.code[0]=137;
- g_sendhead.tabcount=1;
- g_pMainWnd->ProcessChatMessageRequest2(1);if(g_bSendOK==0)continue;
- }
- CArray<CStringArray, CStringArray>List1array;
- DataToArray(&List1array);
- int size=m_List1array.GetSize ();
- for(int j=0; j<List1array.GetSize (); j++)
- {
- size++;
- m_List1array.SetSize(size , 1 );
- size--;
- m_List1array.ElementAt (size).Copy (List1array.ElementAt (j));
- m_List1array.ElementAt (size).InsertAt (0, branch);
- size++;
- }
- }
- g_pMainWnd->OnDisconnect();
- g_bBranchModify=0;g_branchip=g_branchname="";
- }
- FillGrid();
- if(m_checkwork )
- {
- if(m_List1.GetItemCount ()==0)
- CDialog::OnCancel ();
- else
- {
- BOOL bShow=0;
- CString str;
- for(int i=0; i<m_List1.GetItemCount (); i++)
- {
- str=m_List1.GetItemText (i, 3);
- if(str.Find (g_user.name )!=-1)
- {
- if(str.Find ("OK")==-1)
- {
- bShow=1;break;
- }
- }
- str=m_List1.GetItemText (i, 5);
- if(str.Find (g_user.name )!=-1)
- {
- if(str.Find ("OK")==-1)
- {
- bShow=1;break;
- }
- }
- str=m_List1.GetItemText (i, 7);
- if(str.Find (g_user.name )!=-1)
- {
- if(str.Find ("OK")==-1)
- {
- bShow=1;break;
- }
- }
- }
- if(bShow==0)CDialog::OnCancel ();
- }
- }
- return TRUE; // return TRUE unless you set the focus to a control
- // EXCEPTION: OCX Property Pages should return FALSE
- }
- void DigitalWorkSet2::OnButton1()
- {
- // TODO: Add your control notification handler code here
- // TODO: Add your control notification handler code here
- UpdateData();
- m_filter.TrimLeft ();
- m_filter.TrimRight ();
- FillGrid();
- }
- void DigitalWorkSet2::OnButton2()
- {
- // TODO: Add your control notification handler code here
- UpdateData();
- m_filter.TrimLeft ();
- m_filter.TrimRight ();
- FillGrid(1);
- }
- void DigitalWorkSet2::FillGrid(int bStatus)
- {
- UpdateData();
- bStatus=!m_check3;
- m_List1.DeleteAllItems2 ();
- int ii=0;
- m_List1.m_arLabels.SetSize( m_List1array.GetSize (), 1 );
- int count=0;
- CString strdate,strdate2;
- CTime tm=CTime::GetCurrentTime ();
- strdate=tm.Format ("%Y-%m-%d");
- if(m_check1)
- {
- tm+=CTimeSpan(7, 0, 0, 0);
- strdate2=tm.Format ("%Y-%m-%d");
- }
- else if(m_check2)
- {
- tm+=CTimeSpan(15, 0, 0, 0);
- strdate2=tm.Format ("%Y-%m-%d");
- }
- if(m_filter.IsEmpty ())
- {
- if(bStatus)
- {
- for(ii=0; ii<m_List1.m_arLabels.GetSize (); ii++)
- {
- // if(m_List1array.ElementAt (ii).ElementAt (3+m_nAdd).Find ("OK")==-1 || m_List1array.ElementAt (ii).ElementAt (5+m_nAdd).Find ("OK")==-1 || m_List1array.ElementAt (ii).ElementAt (7+m_nAdd).Find ("OK")==-1)
- if( CheckOK(m_List1array.ElementAt (ii).ElementAt (3+m_nAdd))==0 || CheckOK(m_List1array.ElementAt (ii).ElementAt (5+m_nAdd))==0 || CheckOK(m_List1array.ElementAt (ii).ElementAt (7+m_nAdd))==0)
- {
- if(m_check1||m_check2)
- {
- if( (m_List1array.ElementAt (ii).ElementAt (4+m_nAdd)>=strdate && m_List1array.ElementAt (ii).ElementAt (4+m_nAdd)<=strdate2)||(m_List1array.ElementAt (ii).ElementAt (6+m_nAdd)>=strdate && m_List1array.ElementAt (ii).ElementAt (6+m_nAdd)<=strdate2)||(m_List1array.ElementAt (ii).ElementAt (8+m_nAdd)>=strdate && m_List1array.ElementAt (ii).ElementAt (8+m_nAdd)<=strdate2) )
- {
- if(m_mode)
- {
- if(m_List1array.ElementAt (ii).ElementAt (3+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (5+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (7+m_nAdd).Find (g_user.name)!=-1)
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- else
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- }
- else if(m_mode)
- {
- if(m_List1array.ElementAt (ii).ElementAt (3+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (5+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (7+m_nAdd).Find (g_user.name)!=-1)
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- else
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- }
- }
- else
- {
- for(ii=0; ii<m_List1.m_arLabels.GetSize (); ii++)
- {
- if(m_check1||m_check2)
- {
- if( (m_List1array.ElementAt (ii).ElementAt (4+m_nAdd)>=strdate && m_List1array.ElementAt (ii).ElementAt (4+m_nAdd)<=strdate2)||(m_List1array.ElementAt (ii).ElementAt (6+m_nAdd)>=strdate && m_List1array.ElementAt (ii).ElementAt (6+m_nAdd)<=strdate2)||(m_List1array.ElementAt (ii).ElementAt (8+m_nAdd)>=strdate && m_List1array.ElementAt (ii).ElementAt (8+m_nAdd)<=strdate2) )
- {
- if(m_mode)
- {
- if(m_List1array.ElementAt (ii).ElementAt (3+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (5+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (7+m_nAdd).Find (g_user.name)!=-1)
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- else
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- }
- else if(m_mode)
- {
- if(m_List1array.ElementAt (ii).ElementAt (3+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (5+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (7+m_nAdd).Find (g_user.name)!=-1)
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- else
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- }
- }
- else
- {
- if(bStatus)
- {
- int type=GetType(m_filter);
- if(type==1)//电话
- {
- for(ii=0; ii<m_List1.m_arLabels.GetSize (); ii++)
- {
- if( (m_List1array.ElementAt (ii).ElementAt (3+m_nAdd).Find ("OK")==-1 || m_List1array.ElementAt (ii).ElementAt (5+m_nAdd).Find ("OK")==-1 || m_List1array.ElementAt (ii).ElementAt (7+m_nAdd).Find ("OK")==-1) &&(m_List1array.ElementAt (ii).ElementAt (9+m_nAdd).Find (m_filter)!=-1 || \
- m_List1array.ElementAt (ii).ElementAt (10+m_nAdd).Find (m_filter)!=-1))
- {
- if(m_check1||m_check2)
- {
- if( (m_List1array.ElementAt (ii).ElementAt (4+m_nAdd)>=strdate && m_List1array.ElementAt (ii).ElementAt (4+m_nAdd)<=strdate2)||(m_List1array.ElementAt (ii).ElementAt (6+m_nAdd)>=strdate && m_List1array.ElementAt (ii).ElementAt (6+m_nAdd)<=strdate2)||(m_List1array.ElementAt (ii).ElementAt (8+m_nAdd)>=strdate && m_List1array.ElementAt (ii).ElementAt (8+m_nAdd)<=strdate2) )
- {
- if(m_mode)
- {
- if(m_List1array.ElementAt (ii).ElementAt (3+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (5+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (7+m_nAdd).Find (g_user.name)!=-1)
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- else
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- }
- else if(m_mode)
- {
- if(m_List1array.ElementAt (ii).ElementAt (3+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (5+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (7+m_nAdd).Find (g_user.name)!=-1)
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- else
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- }
- }
- else if(type==2)//拼音
- {
- m_filter.MakeUpper ();
- for(ii=0; ii<m_List1.m_arLabels.GetSize (); ii++)
- {
- if( (m_List1array.ElementAt (ii).ElementAt (3+m_nAdd).Find ("OK")==-1 || m_List1array.ElementAt (ii).ElementAt (5+m_nAdd).Find ("OK")==-1 || m_List1array.ElementAt (ii).ElementAt (7+m_nAdd).Find ("OK")==-1) &&(m_List1array.ElementAt (ii).ElementAt (11+m_nAdd).Find (m_filter)!=-1 || \
- m_List1array.ElementAt (ii).ElementAt (12+m_nAdd).Find (m_filter)!=-1))
- {
- if(m_check1||m_check2)
- {
- if( (m_List1array.ElementAt (ii).ElementAt (4+m_nAdd)>=strdate && m_List1array.ElementAt (ii).ElementAt (4+m_nAdd)<=strdate2)||(m_List1array.ElementAt (ii).ElementAt (6+m_nAdd)>=strdate && m_List1array.ElementAt (ii).ElementAt (6+m_nAdd)<=strdate2)||(m_List1array.ElementAt (ii).ElementAt (8+m_nAdd)>=strdate && m_List1array.ElementAt (ii).ElementAt (8+m_nAdd)<=strdate2) )
- {
- if(m_mode)
- {
- if(m_List1array.ElementAt (ii).ElementAt (3+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (5+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (7+m_nAdd).Find (g_user.name)!=-1)
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- else
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- }
- else if(m_mode)
- {
- if(m_List1array.ElementAt (ii).ElementAt (3+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (5+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (7+m_nAdd).Find (g_user.name)!=-1)
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- else
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- }
- }
- else
- {
- for(ii=0; ii<m_List1.m_arLabels.GetSize (); ii++)
- {
- if( (m_List1array.ElementAt (ii).ElementAt (3+m_nAdd).Find ("OK")==-1 || m_List1array.ElementAt (ii).ElementAt (5+m_nAdd).Find ("OK")==-1 || m_List1array.ElementAt (ii).ElementAt (7+m_nAdd).Find ("OK")==-1) &&(m_List1array.ElementAt (ii).ElementAt (0).Find (m_filter)!=-1 ||\
- m_List1array.ElementAt (ii).ElementAt (1).Find (m_filter)!=-1 || \
- m_List1array.ElementAt (ii).ElementAt (2+m_nAdd).Find (m_filter)!=-1 || \
- m_List1array.ElementAt (ii).ElementAt (2).Find (m_filter)!=-1 ))
- {
- if(m_check1||m_check2)
- {
- if( (m_List1array.ElementAt (ii).ElementAt (4+m_nAdd)>=strdate && m_List1array.ElementAt (ii).ElementAt (4+m_nAdd)<=strdate2)||(m_List1array.ElementAt (ii).ElementAt (6+m_nAdd)>=strdate && m_List1array.ElementAt (ii).ElementAt (6+m_nAdd)<=strdate2)||(m_List1array.ElementAt (ii).ElementAt (8+m_nAdd)>=strdate && m_List1array.ElementAt (ii).ElementAt (8+m_nAdd)<=strdate2) )
- {
- if(m_mode)
- {
- if(m_List1array.ElementAt (ii).ElementAt (3+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (5+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (7+m_nAdd).Find (g_user.name)!=-1)
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- else
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- }
- else if(m_mode)
- {
- if(m_List1array.ElementAt (ii).ElementAt (3+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (5+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (7+m_nAdd).Find (g_user.name)!=-1)
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- else
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- }
- }
- }
- else
- {
- int type=GetType(m_filter);
- if(type==1)//电话
- {
- for(ii=0; ii<m_List1.m_arLabels.GetSize (); ii++)
- {
- if(m_List1array.ElementAt (ii).ElementAt (9+m_nAdd).Find (m_filter)!=-1 || \
- m_List1array.ElementAt (ii).ElementAt (10+m_nAdd).Find (m_filter)!=-1)
- {
- if(m_check1||m_check2)
- {
- if( (m_List1array.ElementAt (ii).ElementAt (4+m_nAdd)>=strdate && m_List1array.ElementAt (ii).ElementAt (4+m_nAdd)<=strdate2)||(m_List1array.ElementAt (ii).ElementAt (6+m_nAdd)>=strdate && m_List1array.ElementAt (ii).ElementAt (6+m_nAdd)<=strdate2)||(m_List1array.ElementAt (ii).ElementAt (8+m_nAdd)>=strdate && m_List1array.ElementAt (ii).ElementAt (8+m_nAdd)<=strdate2) )
- {
- if(m_mode)
- {
- if(m_List1array.ElementAt (ii).ElementAt (3+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (5+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (7+m_nAdd).Find (g_user.name)!=-1)
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- else
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- }
- else if(m_mode)
- {
- if(m_List1array.ElementAt (ii).ElementAt (3+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (5+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (7+m_nAdd).Find (g_user.name)!=-1)
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- else
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- }
- }
- else if(type==2)//拼音
- {
- m_filter.MakeUpper ();
- for(ii=0; ii<m_List1.m_arLabels.GetSize (); ii++)
- {
- if(m_List1array.ElementAt (ii).ElementAt (11+m_nAdd).Find (m_filter)!=-1 || \
- m_List1array.ElementAt (ii).ElementAt (12+m_nAdd).Find (m_filter)!=-1)
- {
- if(m_check1||m_check2)
- {
- if( (m_List1array.ElementAt (ii).ElementAt (4+m_nAdd)>=strdate && m_List1array.ElementAt (ii).ElementAt (4+m_nAdd)<=strdate2)||(m_List1array.ElementAt (ii).ElementAt (6+m_nAdd)>=strdate && m_List1array.ElementAt (ii).ElementAt (6+m_nAdd)<=strdate2)||(m_List1array.ElementAt (ii).ElementAt (8+m_nAdd)>=strdate && m_List1array.ElementAt (ii).ElementAt (8+m_nAdd)<=strdate2) )
- {
- if(m_mode)
- {
- if(m_List1array.ElementAt (ii).ElementAt (3+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (5+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (7+m_nAdd).Find (g_user.name)!=-1)
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- else
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- }
- else if(m_mode)
- {
- if(m_List1array.ElementAt (ii).ElementAt (3+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (5+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (7+m_nAdd).Find (g_user.name)!=-1)
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- else
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- }
- }
- else
- {
- for(ii=0; ii<m_List1.m_arLabels.GetSize (); ii++)
- {
- if(m_List1array.ElementAt (ii).ElementAt (0).Find (m_filter)!=-1 ||\
- m_List1array.ElementAt (ii).ElementAt (1).Find (m_filter)!=-1 || \
- m_List1array.ElementAt (ii).ElementAt (2+m_nAdd).Find (m_filter)!=-1 || \
- m_List1array.ElementAt (ii).ElementAt (2).Find (m_filter)!=-1 )
- {
- if(m_check1||m_check2)
- {
- if( (m_List1array.ElementAt (ii).ElementAt (4+m_nAdd)>=strdate && m_List1array.ElementAt (ii).ElementAt (4+m_nAdd)<=strdate2)||(m_List1array.ElementAt (ii).ElementAt (6+m_nAdd)>=strdate && m_List1array.ElementAt (ii).ElementAt (6+m_nAdd)<=strdate2)||(m_List1array.ElementAt (ii).ElementAt (8+m_nAdd)>=strdate && m_List1array.ElementAt (ii).ElementAt (8+m_nAdd)<=strdate2) )
- {
- if(m_mode)
- {
- if(m_List1array.ElementAt (ii).ElementAt (3+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (5+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (7+m_nAdd).Find (g_user.name)!=-1)
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- else
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- }
- else if(m_mode)
- {
- if(m_List1array.ElementAt (ii).ElementAt (3+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (5+m_nAdd).Find (g_user.name)!=-1 || m_List1array.ElementAt (ii).ElementAt (7+m_nAdd).Find (g_user.name)!=-1)
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- else
- m_List1.m_arLabels.ElementAt (count++).Copy (m_List1array.ElementAt (ii));
- }
- }
- }
- }
- }
- m_List1.m_arLabels.SetSize(count, 1);
- ii=count;
- m_List1.m_LabelCount=ii;
- m_List1.SetItemCountEx (ii);
- CString str;
- str.Format ("单数:%d", ii);
- SetDlgItemText(IDC_STATIC2, str);
- }
- void DigitalWorkSet2::OnOK()
- {
- // TODO: Add extra validation here
- OnButton1();
- }
- void DigitalWorkSet2::OnCheck1()
- {
- // TODO: Add your control notification handler code here
- UpdateData();
- m_check2=0; UpdateData(false); OnButton1();
- }
- void DigitalWorkSet2::OnCheck2()
- {
- // TODO: Add your control notification handler code here
- UpdateData();
- m_check1=0; UpdateData(false); OnButton1();
- }
- void DigitalWorkSet2::OnCustomdrawList ( NMHDR* pNMHDR, LRESULT* pResult )
- {
- NMLVCUSTOMDRAW* pLVCD = reinterpret_cast<NMLVCUSTOMDRAW*>( pNMHDR );
- // Take the default processing unless we set this to something else below.
- *pResult = 0;
- // First thing - check the draw stage. If it's the control's prepaint
- // stage, then tell Windows we want messages for every item.
- if ( CDDS_PREPAINT == pLVCD->nmcd.dwDrawStage )
- {
- *pResult = CDRF_NOTIFYITEMDRAW;
- }
- else if ( CDDS_ITEMPREPAINT == pLVCD->nmcd.dwDrawStage )
- {
- // This is the prepaint stage for an item. Here's where we set the
- // item's text color. Our return value will tell Windows to draw the
- // item itself, but it will use the new color we set here.
- // We'll cycle the colors through red, green, and light blue.
- if(m_List1.m_arLabels.ElementAt (pLVCD->nmcd.dwItemSpec).ElementAt (3).Find ("OK")==-1 || m_List1.m_arLabels.ElementAt (pLVCD->nmcd.dwItemSpec).ElementAt (5).Find ("OK")==-1 || m_List1.m_arLabels.ElementAt (pLVCD->nmcd.dwItemSpec).ElementAt (7).Find ("OK")==-1)
- pLVCD->clrText = RGB(220,0,0);
- else
- pLVCD->clrText = RGB(20,133,20);
-
- if(pLVCD->nmcd.dwItemSpec%2)
- pLVCD->clrTextBk = g_gridcol1;
- else
- pLVCD->clrTextBk = g_gridcol2;
- // Store the color back in the NMLVCUSTOMDRAW struct.
- // Tell Windows to paint the control itself.
- *pResult = CDRF_DODEFAULT;
- }
- }
- void DigitalWorkSet2::OnCheck3()
- {
- // TODO: Add your control notification handler code here
- OnButton1();
- }
- BOOL DigitalWorkSet2::CheckOK(CString str)
- {
- int pos=str.Find ("\/");
- if(pos==-1)
- {
- return 1;
- }
- if(str.Left (pos)=="")
- {
- return 1;
- }
- if(str.Find ("OK")==-1)
- {
- return 0;
- }
- return 1;
- }
|