// DailyForm.cpp : implementation file // #include "stdafx.h" #include "ylgl.h" #include "DailyForm.h" #include "MyMdi.H" #include "SelExpendType.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // DailyForm IDC_EDITmoney2 IMPLEMENT_DYNCREATE(DailyForm, MyFormView) DailyForm::DailyForm() : MyFormView(DailyForm::IDD) { //{{AFX_DATA_INIT(DailyForm) m_year = atoi(g_date.Mid(0, 4)); m_month = atoi(g_date.Mid(5, 2)); m_day = atoi(g_date.Mid(8, 2)); m_radio1 = 0; m_bInit = 0; m_timestmap = 0; m_radio2 = 0; m_bForKF = 0; //}}AFX_DATA_INIT } DailyForm::~DailyForm() { } void DailyForm::DoDataExchange(CDataExchange* pDX) { MyFormView::DoDataExchange(pDX); //{{AFX_DATA_MAP(DailyForm) DDX_Control(pDX, IDC_SPIN3, m_spinday); DDX_Control(pDX, IDC_SPIN2, m_spinmonth); DDX_Control(pDX, IDC_SPIN1, m_spinyear); DDX_Control(pDX, IDC_LIST2, m_List1); DDX_Control(pDX, IDC_STATIC1, m_static1); DDX_Text(pDX, IDC_EDITyear, m_year); DDV_MinMaxUInt(pDX, m_year, 1900, 3000); DDX_Text(pDX, IDC_EDITmonth, m_month); DDV_MinMaxUInt(pDX, m_month, 1, 12); DDX_Text(pDX, IDC_EDITday, m_day); DDV_MinMaxUInt(pDX, m_day, 1, 31); DDX_Radio(pDX, IDC_RADIO3, m_radio1); DDX_Radio(pDX, IDC_RADIO14, m_radio2); //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(DailyForm, MyFormView) //{{AFX_MSG_MAP(DailyForm) ON_BN_CLICKED(IDC_BUTclose, OnBUTclose) ON_EN_CHANGE(IDC_EDITyear, OnChangeEDITyear) ON_EN_CHANGE(IDC_EDITmonth, OnChangeEDITmonth) ON_EN_CHANGE(IDC_EDITday, OnChangeEDITday) ON_BN_CLICKED(IDC_RADIO3, OnRadio3) ON_BN_CLICKED(IDC_RADIO4, OnRadio4) ON_BN_CLICKED(IDC_RADIO5, OnRadio5) ON_BN_CLICKED(IDC_RADIO6, OnRadio6) ON_BN_CLICKED(IDC_RADIO7, OnRadio7) ON_BN_CLICKED(IDC_RADIO8, OnRadio8) ON_BN_CLICKED(IDC_RADIO9, OnRadio9) ON_BN_CLICKED(IDC_RADIO10, OnRadio10) ON_BN_CLICKED(IDC_RADIO11, OnRadio11) ON_BN_CLICKED(IDC_RADIO12, OnRadio12) ON_BN_CLICKED(IDC_RADIO13, OnRadio13) ON_BN_CLICKED(IDC_BUTprint, OnBUTprint) ON_BN_CLICKED(IDC_BUTprint2, OnBUTprint2) ON_BN_CLICKED(IDC_BUTprint5, OnBUTprint5) ON_BN_CLICKED(IDC_BUTprint4, OnBUTprint4) ON_BN_CLICKED(IDC_RADIO14, OnRadio14) ON_BN_CLICKED(IDC_RADIO15, OnRadio15) ON_BN_CLICKED(IDC_RADIO16, OnRadio16) ON_BN_CLICKED(IDC_RADIO17, OnRadio17) //}}AFX_MSG_MAP ON_NOTIFY(NM_CUSTOMDRAW, IDC_LIST2, OnCustomdrawList) ON_WM_SIZE() END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // DailyForm diagnostics #ifdef _DEBUG void DailyForm::AssertValid() const { MyFormView::AssertValid(); } void DailyForm::Dump(CDumpContext& dc) const { MyFormView::Dump(dc); } #endif //_DEBUG ///////////////////////////////////////////////////////////////////////////// // DailyForm message handlers void DailyForm::OnInitialUpdate() { MyFormView::OnInitialUpdate(); // TODO: Add your specialized code here and/or call the base class #ifdef DDF_VERSION GetDlgItem(IDC_STATIC10)->ShowWindow(SW_SHOW); GetDlgItem(IDC_RADIO14)->ShowWindow(SW_SHOW); GetDlgItem(IDC_RADIO15)->ShowWindow(SW_SHOW); #endif CMyMdi Mdi; Mdi.SetSubView((CWnd*)GetParent(), (CWnd*)this); GetDlgItem(IDC_BUTprint2)->EnableWindow(IsHasRights2new(51)); // Here we create the outbar control using the splitter as its parent // and setting its id to the first pane. CRect rc2; GetWindowRect(rc2); ::MoveWindow(m_hWnd, g_rc.left, g_rc.top, g_rc.Width(), g_rc.Height(), TRUE);// Jeff,在OnSize里处理控件位置; //::MoveWindow(m_hWnd,g_rc.left-1800,g_rc.top+1800,g_rc.Width(),g_rc.Height(),TRUE);// Jeff,在OnSize里处理控件位置; EnumChildWindows(m_hWnd, (WNDENUMPROC)EnumChildProc, 0); // Jeff,在OnSize里处理控件位置; // what's g_cominfoarray mean? if (atoi(g_cominfoarray.ElementAt(0).ElementAt(115))) GetDlgItem(IDC_BUTprint4)->ShowWindow(SW_SHOW); m_static1.SetFont(&g_titlefont); if (atoi(g_cominfoarray.ElementAt(0).ElementAt(115))) m_List1.SetHeadings("id,0;项目名称,300;金额,100;项目类别,100;收入/支出,100;日期,100;支付方式,100;收银,100;财务审核,100;接单点,100"); else m_List1.SetHeadings("id,0;项目名称,300;金额,100;项目类别,100;收入/支出,100;日期,100;支付方式,100;收银,100;财务审核,100"); m_List1.LoadColumnInfo(107); m_spinyear.SetRange(1900, 3000); m_spinmonth.SetRange(1, 12); m_spinday.SetRange(1, 31); m_bInit = 1; DateChange(); if (IsHasRights2new(23) == 0) { GetDlgItem(IDC_EDITyear)->ShowWindow(0); GetDlgItem(IDC_EDITmonth)->ShowWindow(0); GetDlgItem(IDC_EDITday)->ShowWindow(0); GetDlgItem(IDC_STATIC21)->ShowWindow(0); GetDlgItem(IDC_STATIC22)->ShowWindow(0); GetDlgItem(IDC_STATIC23)->ShowWindow(0); m_spinyear.ShowWindow(0); m_spinmonth.ShowWindow(0); m_spinday.ShowWindow(0); m_static1.GetWindowRect(rc2); CRect rc; GetDlgItem(IDC_EDITmonth)->GetWindowRect(rc); ScreenToClient(rc); ScreenToClient(rc2); rc2.right = rc.left; m_static1.MoveWindow(rc2); } #ifdef CHILD_VERSION SetDlgItemText(IDC_RADIO10, _T("引导二销")); #endif } void DailyForm::FillGrid() { m_List1.DeleteAllItems2(); int ii = 0; m_List1.m_arLabels.SetSize(m_List1array.GetSize(), 1); int count = 0; if (m_jdd.IsEmpty()) { for (ii = 0; ii < m_List1.m_arLabels.GetSize(); ii++) { m_List1.m_arLabels.ElementAt(count++).Copy(m_List1array.ElementAt(ii)); } } else { float income = 0; int dindanshu = 0; float payout = 0; for (ii = 0; ii < m_List1.m_arLabels.GetSize(); ii++) { if (m_List1array.ElementAt(ii).ElementAt(9) == m_jdd) { m_List1.m_arLabels.ElementAt(count++).Copy(m_List1array.ElementAt(ii)); if(m_List1array.ElementAt(ii).ElementAt(4) == _T("支出")) payout += atof(m_List1array.ElementAt(ii).ElementAt(2)); else income += atof(m_List1array.ElementAt(ii).ElementAt(2)); if (m_List1array.ElementAt(ii).ElementAt(3) == _T("预约收款")) dindanshu++; } } CString str; str.Format("%0.2f", income); ::ConvertToPrice(str); SetDlgItemText(IDC_EDITmoney1, str); str.Format("%0.2f", income); ::ConvertToPrice(str); SetDlgItemText(IDC_EDITmoney5, str); str.Format("%0.2f", payout); ::ConvertToPrice(str); SetDlgItemText(IDC_EDITmoney2, str); str.Format("%0.2f", income - payout); ::ConvertToPrice(str); SetDlgItemText(IDC_EDITmoney3, str); str.Format("%d", dindanshu); SetDlgItemText(IDC_EDITmoney4, str); } 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); CRect rc; GetDlgItem(IDC_STATIC2)->GetWindowRect(rc); ScreenToClient(rc); InvalidateRect(rc); } void DailyForm::OnBUTclose() { // TODO: Add your control notification handler code here GetParent()->SendMessage(WM_CLOSE); } void DailyForm::OnChangeEDITyear() { // TODO: If this is a RICHEDIT control, the control will not // send this notification unless you override the MyFormView::OnInitDialog() // function and call CRichEditCtrl().SetEventMask() // with the ENM_CHANGE flag ORed into the mask. DateChange(); // TODO: Add your control notification handler code here } void DailyForm::OnChangeEDITmonth() { DateChange(); } void DailyForm::OnChangeEDITday() { // TODO: If this is a RICHEDIT control, the control will not // send this notification unless you override the MyFormView::OnInitDialog() // function and call CRichEditCtrl().SetEventMask() // with the ENM_CHANGE flag ORed into the mask. DateChange(); // TODO: Add your control notification handler code here } void DailyForm::DateChange() { if (m_bInit == 0)return; m_spinyear.EnableWindow(0); m_spinmonth.EnableWindow(0); m_spinday.EnableWindow(0); UpdateData(); int i; int g_nYearposTemp = g_nYearpos; BOOL bLastYear = 0; BOOL bThisYear = 0; #if JEFF_TEST_ON // 2015开始禁用跨年数据; int g_nYearposPre = -1; if (m_year >= 2014 && m_year <= atoi(g_date.Left(4)) && g_hisyeararray.GetSize()) { g_nYearpos = -1; bThisYear = 1; if (m_year == 2014) { g_nYearposPre = GetYearPos(m_year - 1); } } else if (m_year <= 2013 && g_hisyeararray.GetSize()) { g_nYearpos = GetYearPos(m_year); if (g_nYearpos != -1) g_nYearposPre = GetYearPos(m_year - 1); bLastYear = 1; } #else if (m_year == atoi(g_date.Left(4)) && g_hisyeararray.GetSize()) bThisYear = 1; else if (m_year <= atoi(g_date.Left(4)) - 1 && g_hisyeararray.GetSize()) bLastYear = 1; g_nYearpos = GetYearPos(m_year); // CString ss; // ss.Format ("%d", g_nYearpos);MessageBox(ss); int g_nYearposPre = GetYearPos(m_year - 1); // ss.Format ("%d", g_nYearposPre);MessageBox(ss); #endif g_sendhead.bsql = 0; g_sendhead.code[0] = 14; // 其他收入 g_sendhead.code[1] = 13; // 支出 g_sendhead.code[2] = 16; // 订单收入 g_sendhead.code[3] = 198; // 二销收入 g_sendhead.code[4] = 216; // 充值 g_sendhead.tabcount = 5; CString sql, strdate, strdate2; strdate.Format("%04d-%02d-%02d", m_year, m_month, m_day); CRect rc; m_static1.GetWindowRect(rc); ScreenToClient(rc); InvalidateRect(rc); COleDateTime dtDay(m_year, m_month, m_day, 0, 0, 0); int nDayWeek = dtDay.GetDayOfWeek() - 1; //得到星期几,1=Sunday, 2=Monday, CString DayOfWeek[7] = { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" }; CString sdate; if (nDayWeek >= 0 && nDayWeek <= 6) sdate = DayOfWeek[nDayWeek]; else sdate = "无效日期"; m_static1.SetWindowText(strdate + "(" + sdate + ")财务报表"); sql.Format("dat='" + strdate + "' and (sale2type is null or sale2type='');dat='" + strdate + "';date='" + strdate + "';date='" + strdate + "';date='" + strdate + "'"); g_pMainWnd->ProcessChatMessageRequest2(sql); if (g_bSendOK == 0) { g_nYearpos = g_nYearposTemp; m_spinyear.EnableWindow(1); m_spinmonth.EnableWindow(1); m_spinday.EnableWindow(1); return; } DataToArray(&List2array, &List3array, &List11array, &other2salearray, &memberarray); if (bLastYear)//如果是去年, 则加今年的补款 { g_nYearpos = -1;//今年 g_sendhead.bsql = 0; g_sendhead.code[0] = 14; g_sendhead.code[1] = 13; g_sendhead.code[2] = 16; g_sendhead.code[3] = 198; g_sendhead.code[4] = 216; g_sendhead.tabcount = 5; g_pMainWnd->ProcessChatMessageRequest2(sql); if (g_bSendOK == 0) { g_nYearpos = g_nYearposTemp; m_spinyear.EnableWindow(1); m_spinmonth.EnableWindow(1); m_spinday.EnableWindow(1); return; } CArrayThisYearList11array; CArrayThisYearList3array; CArrayThisYearList2array; CArrayThisYearother2salearray; CArrayThisYearmemberarray; DataToArray(&ThisYearList2array, &ThisYearList3array, &ThisYearList11array, &ThisYearother2salearray, &ThisYearmemberarray); int oldsize = List11array.GetSize(); List11array.SetSize(oldsize + ThisYearList11array.GetSize()); for (i = oldsize; i < oldsize + ThisYearList11array.GetSize(); i++) { List11array.ElementAt(i).Copy(ThisYearList11array.ElementAt(i - oldsize)); } oldsize = List3array.GetSize(); List3array.SetSize(oldsize + ThisYearList3array.GetSize()); for (i = oldsize; i < oldsize + ThisYearList3array.GetSize(); i++) { List3array.ElementAt(i).Copy(ThisYearList3array.ElementAt(i - oldsize)); } oldsize = List2array.GetSize(); List2array.SetSize(oldsize + ThisYearList2array.GetSize()); for (i = oldsize; i < oldsize + ThisYearList2array.GetSize(); i++) { List2array.ElementAt(i).Copy(ThisYearList2array.ElementAt(i - oldsize)); } oldsize = other2salearray.GetSize(); other2salearray.SetSize(oldsize + ThisYearother2salearray.GetSize()); for (i = oldsize; i < oldsize + ThisYearother2salearray.GetSize(); i++) { other2salearray.ElementAt(i).Copy(ThisYearother2salearray.ElementAt(i - oldsize)); } oldsize = memberarray.GetSize(); memberarray.SetSize(oldsize + ThisYearmemberarray.GetSize()); for (i = oldsize; i < oldsize + ThisYearmemberarray.GetSize(); i++) { memberarray.ElementAt(i).Copy(ThisYearmemberarray.ElementAt(i - oldsize)); } } if (g_nYearposPre != -1)//如果是今年, 则加去年的补款 { g_nYearpos = g_nYearposPre;//去年 g_sendhead.bsql = 0; g_sendhead.code[0] = 14; g_sendhead.code[1] = 13; g_sendhead.code[2] = 16; g_sendhead.code[3] = 198; g_sendhead.tabcount = 4; g_pMainWnd->ProcessChatMessageRequest2(sql); if (g_bSendOK == 0) { g_nYearpos = g_nYearposTemp; m_spinyear.EnableWindow(1); m_spinmonth.EnableWindow(1); m_spinday.EnableWindow(1); return; } CArrayThisYearList11array; CArrayThisYearList3array; CArrayThisYearList2array; CArrayThisYearother2salearray; DataToArray(&ThisYearList2array, &ThisYearList3array, &ThisYearList11array, &ThisYearother2salearray); int oldsize = List11array.GetSize(); List11array.SetSize(oldsize + ThisYearList11array.GetSize()); for (i = oldsize; i < oldsize + ThisYearList11array.GetSize(); i++) { List11array.ElementAt(i).Copy(ThisYearList11array.ElementAt(i - oldsize)); } oldsize = List3array.GetSize(); List3array.SetSize(oldsize + ThisYearList3array.GetSize()); for (i = oldsize; i < oldsize + ThisYearList3array.GetSize(); i++) { List3array.ElementAt(i).Copy(ThisYearList3array.ElementAt(i - oldsize)); } oldsize = List2array.GetSize(); List2array.SetSize(oldsize + ThisYearList2array.GetSize()); for (i = oldsize; i < oldsize + ThisYearList2array.GetSize(); i++) { List2array.ElementAt(i).Copy(ThisYearList2array.ElementAt(i - oldsize)); } oldsize = other2salearray.GetSize(); other2salearray.SetSize(oldsize + ThisYearother2salearray.GetSize()); for (i = oldsize; i < oldsize + ThisYearother2salearray.GetSize(); i++) { other2salearray.ElementAt(i).Copy(ThisYearother2salearray.ElementAt(i - oldsize)); } } g_nYearpos = g_nYearposTemp; KindChange(); m_spinyear.EnableWindow(1); m_spinmonth.EnableWindow(1); m_spinday.EnableWindow(1); } void DailyForm::KindChange() { // printf("Jeff:m_bForKF=%d",m_bForKF); if (m_bForKF) { KindChange2(); return; } m_jdd = ""; CString str; int pos = 0; int dindanshu = 0; // 日订单数 float income = 0; // 日总收入 float income2 = 0; // 日营业收入 float payout = 0; // 日支出 int count = List2array.GetSize() + List3array.GetSize() + List11array.GetSize() + other2salearray.GetSize() + memberarray.GetSize(); m_List1array.RemoveAll(); m_List1array.SetSize(count); int i = 0; for (i = 0; i < memberarray.GetSize(); i++) { if (memberarray.ElementAt(i).ElementAt(6).IsEmpty()) memberarray.ElementAt(i).SetAt(6, "未审核"); memberarray.ElementAt(i).SetAt(0, memberarray.ElementAt(i).ElementAt(0) + ":4"); } for (i = 0; i < List2array.GetSize(); i++) { if (List2array.ElementAt(i).ElementAt(10).IsEmpty()) List2array.ElementAt(i).SetAt(10, "未审核"); List2array.ElementAt(i).SetAt(0, List2array.ElementAt(i).ElementAt(0) + ":0"); } for (i = 0; i < List3array.GetSize(); i++) { if (List3array.ElementAt(i).ElementAt(7).IsEmpty()) List3array.ElementAt(i).SetAt(7, "未审核"); List3array.ElementAt(i).SetAt(0, List3array.ElementAt(i).ElementAt(0) + ":1"); } for (i = 0; i < List11array.GetSize(); i++) { if (List11array.ElementAt(i).ElementAt(11).IsEmpty()) List11array.ElementAt(i).SetAt(11, "未审核"); List11array.ElementAt(i).SetAt(10, List11array.ElementAt(i).ElementAt(10) + ":2"); } for (i = 0; i < other2salearray.GetSize(); i++) { if (other2salearray.ElementAt(i).ElementAt(9).IsEmpty()) other2salearray.ElementAt(i).SetAt(9, "未审核"); other2salearray.ElementAt(i).SetAt(8, other2salearray.ElementAt(i).ElementAt(8) + ":3"); } if (m_radio1 == 0) { for (i = 0; i < List11array.GetSize(); i++) // List11array 订单收入; { #ifdef DDF_VERSION if(List11array.ElementAt (i).ElementAt (5)=="客服二销")continue; #endif str = List11array.ElementAt(i).ElementAt(0); str += ";" + List11array.ElementAt(i).ElementAt(3); if (!List11array.ElementAt(i).ElementAt(1).IsEmpty()) { str += ";客户:" + List11array.ElementAt(i).ElementAt(1); if (!List11array.ElementAt(i).ElementAt(2).IsEmpty()) str += "," + List11array.ElementAt(i).ElementAt(2); } else str += ";客户:" + List11array.ElementAt(i).ElementAt(2); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(10)); m_List1array.ElementAt(pos).Add(str); str = List11array.ElementAt(i).ElementAt(4); m_List1array.ElementAt(pos).Add(str); #if 0 income+=atof(str); income2+=atof(str); #else if (List11array.ElementAt(i).ElementAt(8) != "储值卡扣款" && List11array.ElementAt(i).ElementAt(8) != "代金券") // 储值卡扣款; { income += atof(str); } income2 += atof(str); #endif m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(5)); m_List1array.ElementAt(pos).Add("收入"); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(7) + " " + List11array.ElementAt(i).ElementAt(13)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(8)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(9)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(11)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(12)); if (List11array.ElementAt(i).ElementAt(5) == "预约收款") dindanshu++; pos++; } for (i = 0; i < List2array.GetSize(); i++) // List2array 其他收入 { if (List2array.ElementAt(i).ElementAt(7).GetLength()>120) List2array.ElementAt(i).SetAt(7, List2array.ElementAt(i).ElementAt(7).Left(120) + ".."); str = List2array.ElementAt(i).ElementAt(1) + ";" + List2array.ElementAt(i).ElementAt(4) + ";" + List2array.ElementAt(i).ElementAt(6) + ";" + List2array.ElementAt(i).ElementAt(7); str.Replace(";;;", ";"); str.Replace(";;", ";"); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(0)); m_List1array.ElementAt(pos).Add(str); str = List2array.ElementAt(i).ElementAt(2); m_List1array.ElementAt(pos).Add(str); #if 0 income+=atof(str); #else if (List2array.ElementAt(i).ElementAt(9) != "储值卡扣款" && List2array.ElementAt(i).ElementAt(9) != "代金券") { income += atof(str); } #endif if (List2array.ElementAt(i).ElementAt(8) != "") { income2 += atof(str); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(8)); } else m_List1array.ElementAt(pos).Add("其它收入"); m_List1array.ElementAt(pos).Add("收入"); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(3) + " " + List2array.ElementAt(i).ElementAt(11)); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(9)); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(5)); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(10)); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(12)); pos++; } for (i = 0; i < other2salearray.GetSize(); i++) // other2salearray 二销收入 { str = other2salearray.ElementAt(i).ElementAt(0) + ";" + other2salearray.ElementAt(i).ElementAt(1) + ";" + other2salearray.ElementAt(i).ElementAt(2); str.Replace(";;;", ";"); str.Replace(";;", ";"); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(8)); m_List1array.ElementAt(pos).Add(str); str = other2salearray.ElementAt(i).ElementAt(4); m_List1array.ElementAt(pos).Add(str); #if 0 income+=atof(str); income2+=atof(str); #else if (other2salearray.ElementAt(i).ElementAt(7) != "储值卡扣款" && other2salearray.ElementAt(i).ElementAt(7) != "代金券") { income += atof(str); } income2 += atof(str); #endif m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(3)); m_List1array.ElementAt(pos).Add("收入"); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(5) + " " + other2salearray.ElementAt(i).ElementAt(10)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(7)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(6)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(9)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(11)); pos++; } for (i = 0; i < List3array.GetSize(); i++) // List3array 支出 { if (List3array.ElementAt(i).ElementAt(6).GetLength()>120) List3array.ElementAt(i).SetAt(6, List3array.ElementAt(i).ElementAt(6).Left(120) + ".."); str = List3array.ElementAt(i).ElementAt(1) + ";" + List3array.ElementAt(i).ElementAt(4) + ";" + List3array.ElementAt(i).ElementAt(6); str.Replace(";;;;", ";"); str.Replace(";;;", ";"); str.Replace(";;", ";"); m_List1array.ElementAt(pos).Add(List3array.ElementAt(i).ElementAt(0)); m_List1array.ElementAt(pos).Add(str); str = List3array.ElementAt(i).ElementAt(2); m_List1array.ElementAt(pos).Add(str); payout += atof(str); #if JEFF_TEST_ON m_List1array.ElementAt(pos).Add(List3array.ElementAt(i).ElementAt(1)); #else m_List1array.ElementAt(pos).Add("固定费用"); #endif m_List1array.ElementAt(pos).Add("支出"); m_List1array.ElementAt(pos).Add(List3array.ElementAt(i).ElementAt(3) + " " + List3array.ElementAt(i).ElementAt(8)); m_List1array.ElementAt(pos).Add("现金"); m_List1array.ElementAt(pos).Add(List3array.ElementAt(i).ElementAt(5)); m_List1array.ElementAt(pos).Add(List3array.ElementAt(i).ElementAt(7)); m_List1array.ElementAt(pos).Add(List3array.ElementAt(i).ElementAt(12)); pos++; } for (i = 0; i < memberarray.GetSize(); i++) // memberarray 储值卡充值 { str = memberarray.ElementAt(i).ElementAt(1) + ";" + memberarray.ElementAt(i).ElementAt(5) + ";客户:" + memberarray.ElementAt(i).ElementAt(2); str.Replace(";;;", ";"); str.Replace(";;", ";"); m_List1array.ElementAt(pos).Add(memberarray.ElementAt(i).ElementAt(0)); m_List1array.ElementAt(pos).Add(str); str = memberarray.ElementAt(i).ElementAt(3); m_List1array.ElementAt(pos).Add(str); income += atof(str); m_List1array.ElementAt(pos).Add("会员充值"); m_List1array.ElementAt(pos).Add("收入"); m_List1array.ElementAt(pos).Add(memberarray.ElementAt(i).ElementAt(4) + " " + memberarray.ElementAt(i).ElementAt(8)); if (memberarray.ElementAt(i).ElementAt(7) == "") m_List1array.ElementAt(pos).Add("现金"); else m_List1array.ElementAt(pos).Add(memberarray.ElementAt(i).ElementAt(7)); m_List1array.ElementAt(pos).Add(memberarray.ElementAt(i).ElementAt(5)); m_List1array.ElementAt(pos).Add(memberarray.ElementAt(i).ElementAt(6)); m_List1array.ElementAt(pos).Add(" "); pos++; } } else if (m_radio1 == 1)//收入 { for (i = 0; i < List11array.GetSize(); i++) { #ifdef DDF_VERSION if(List11array.ElementAt (i).ElementAt (5)=="客服二销")continue; #endif str = List11array.ElementAt(i).ElementAt(0); str += ";" + List11array.ElementAt(i).ElementAt(3); if (!List11array.ElementAt(i).ElementAt(1).IsEmpty()) { str += ";客户:" + List11array.ElementAt(i).ElementAt(1); if (!List11array.ElementAt(i).ElementAt(2).IsEmpty()) str += "," + List11array.ElementAt(i).ElementAt(2); } else str += ";客户:" + List11array.ElementAt(i).ElementAt(2); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(10)); m_List1array.ElementAt(pos).Add(str); str = List11array.ElementAt(i).ElementAt(4); m_List1array.ElementAt(pos).Add(str); #if 0 income+=atof(str); income2+=atof(str); #else if (List11array.ElementAt(i).ElementAt(8) != "储值卡扣款" && List11array.ElementAt(i).ElementAt(8) != "代金券") { income += atof(str); } income2 += atof(str); #endif m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(5)); m_List1array.ElementAt(pos).Add("收入"); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(7) + " " + List11array.ElementAt(i).ElementAt(13)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(8)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(9)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(11)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(12)); if (List11array.ElementAt(i).ElementAt(5) == "预约收款") dindanshu++; pos++; } for (i = 0; i < List2array.GetSize(); i++) { if (List2array.ElementAt(i).ElementAt(7).GetLength()>120) List2array.ElementAt(i).SetAt(7, List2array.ElementAt(i).ElementAt(7).Left(120) + ".."); str = List2array.ElementAt(i).ElementAt(1) + ";" + List2array.ElementAt(i).ElementAt(4) + ";" + List2array.ElementAt(i).ElementAt(6) + ";" + List2array.ElementAt(i).ElementAt(7); str.Replace(";;;", ";"); str.Replace(";;", ";"); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(0)); m_List1array.ElementAt(pos).Add(str); str = List2array.ElementAt(i).ElementAt(2); m_List1array.ElementAt(pos).Add(str); #if 0 income+=atof(str); #else if (List2array.ElementAt(i).ElementAt(9) != "储值卡扣款" && List2array.ElementAt(i).ElementAt(9) != "代金券") { income += atof(str); } #endif if (List2array.ElementAt(i).ElementAt(8) != "") { income2 += atof(str); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(8)); } else m_List1array.ElementAt(pos).Add("其它收入"); m_List1array.ElementAt(pos).Add("收入"); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(3) + " " + List2array.ElementAt(i).ElementAt(11)); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(9)); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(5)); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(10)); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(12)); pos++; } //其它二销 for (i = 0; i < other2salearray.GetSize(); i++) { str = other2salearray.ElementAt(i).ElementAt(0) + ";" + other2salearray.ElementAt(i).ElementAt(1) + ";" + other2salearray.ElementAt(i).ElementAt(2); str.Replace(";;;", ";"); str.Replace(";;", ";"); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(8)); m_List1array.ElementAt(pos).Add(str); str = other2salearray.ElementAt(i).ElementAt(4); m_List1array.ElementAt(pos).Add(str); #if 0 income+=atof(str); income2+=atof(str); #else if (other2salearray.ElementAt(i).ElementAt(7) != "储值卡扣款" && other2salearray.ElementAt(i).ElementAt(7) != "代金券") { income += atof(str); } income2 += atof(str); #endif m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(3)); m_List1array.ElementAt(pos).Add("收入"); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(5) + " " + other2salearray.ElementAt(i).ElementAt(10)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(7)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(6)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(9)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(11)); pos++; } for (i = 0; i < memberarray.GetSize(); i++) { str = memberarray.ElementAt(i).ElementAt(1) + ";" + memberarray.ElementAt(i).ElementAt(5) + ";客户:" + memberarray.ElementAt(i).ElementAt(2); str.Replace(";;;", ";"); str.Replace(";;", ";"); m_List1array.ElementAt(pos).Add(memberarray.ElementAt(i).ElementAt(0)); m_List1array.ElementAt(pos).Add(str); str = memberarray.ElementAt(i).ElementAt(3); m_List1array.ElementAt(pos).Add(str); income += atof(str); m_List1array.ElementAt(pos).Add("会员充值"); m_List1array.ElementAt(pos).Add("收入"); m_List1array.ElementAt(pos).Add(memberarray.ElementAt(i).ElementAt(4) + " " + memberarray.ElementAt(i).ElementAt(8)); if (memberarray.ElementAt(i).ElementAt(7) == "") m_List1array.ElementAt(pos).Add("现金"); else m_List1array.ElementAt(pos).Add(memberarray.ElementAt(i).ElementAt(7)); m_List1array.ElementAt(pos).Add(memberarray.ElementAt(i).ElementAt(5)); m_List1array.ElementAt(pos).Add(memberarray.ElementAt(i).ElementAt(6)); m_List1array.ElementAt(pos).Add(" "); pos++; } } else if (m_radio1 == 2)//营业收入 { for (i = 0; i < List11array.GetSize(); i++) { #ifdef DDF_VERSION if(List11array.ElementAt (i).ElementAt (5)=="客服二销")continue; #endif str = List11array.ElementAt(i).ElementAt(0); str += ";" + List11array.ElementAt(i).ElementAt(3); if (!List11array.ElementAt(i).ElementAt(1).IsEmpty()) { str += ";客户:" + List11array.ElementAt(i).ElementAt(1); if (!List11array.ElementAt(i).ElementAt(2).IsEmpty()) str += "," + List11array.ElementAt(i).ElementAt(2); } else str += ";客户:" + List11array.ElementAt(i).ElementAt(2); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(10)); m_List1array.ElementAt(pos).Add(str); str = List11array.ElementAt(i).ElementAt(4); m_List1array.ElementAt(pos).Add(str); #if 0 income+=atof(str); income2+=atof(str); #else if (List11array.ElementAt(i).ElementAt(8) != "储值卡扣款" && List11array.ElementAt(i).ElementAt(8) != "代金券") { income += atof(str); } income2 += atof(str); #endif m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(5)); m_List1array.ElementAt(pos).Add("收入"); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(7) + " " + List11array.ElementAt(i).ElementAt(13)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(8)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(9)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(11)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(12)); if (List11array.ElementAt(i).ElementAt(5) == "预约收款") dindanshu++; pos++; } for (i = 0; i < List2array.GetSize(); i++) { if (List2array.ElementAt(i).ElementAt(8) != "") { if (List2array.ElementAt(i).ElementAt(7).GetLength()>120) List2array.ElementAt(i).SetAt(7, List2array.ElementAt(i).ElementAt(7).Left(120) + ".."); str = List2array.ElementAt(i).ElementAt(1) + ";" + List2array.ElementAt(i).ElementAt(4) + ";" + List2array.ElementAt(i).ElementAt(6) + ";" + List2array.ElementAt(i).ElementAt(7); str.Replace(";;;", ";"); str.Replace(";;", ";"); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(0)); m_List1array.ElementAt(pos).Add(str); str = List2array.ElementAt(i).ElementAt(2); m_List1array.ElementAt(pos).Add(str); #if 0 income+=atof(str); income2+=atof(str); #else if (List2array.ElementAt(i).ElementAt(9) != "储值卡扣款" && List2array.ElementAt(i).ElementAt(9) != "代金券") { income += atof(str); } income2 += atof(str); #endif m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(8)); m_List1array.ElementAt(pos).Add("收入"); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(3) + " " + List2array.ElementAt(i).ElementAt(11)); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(9)); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(5)); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(10)); m_List1array.ElementAt(pos).Add(" "); pos++; } } //其它二销 for (i = 0; i < other2salearray.GetSize(); i++) { str = other2salearray.ElementAt(i).ElementAt(0) + ";" + other2salearray.ElementAt(i).ElementAt(1) + ";" + other2salearray.ElementAt(i).ElementAt(2); str.Replace(";;;", ";"); str.Replace(";;", ";"); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(8)); m_List1array.ElementAt(pos).Add(str); str = other2salearray.ElementAt(i).ElementAt(4); m_List1array.ElementAt(pos).Add(str); #if 0 income+=atof(str); income2+=atof(str); #else if (other2salearray.ElementAt(i).ElementAt(7) != "储值卡扣款" && other2salearray.ElementAt(i).ElementAt(7) != "代金券") { income += atof(str); } income2 += atof(str); #endif m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(3)); m_List1array.ElementAt(pos).Add("收入"); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(5) + " " + other2salearray.ElementAt(i).ElementAt(10)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(7)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(6)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(9)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(11)); pos++; } } else if (m_radio1 == 3)//支出 { for (i = 0; i < List3array.GetSize(); i++) { if (List3array.ElementAt(i).ElementAt(6).GetLength()>120) List3array.ElementAt(i).SetAt(6, List3array.ElementAt(i).ElementAt(6).Left(120) + ".."); str = List3array.ElementAt(i).ElementAt(1) + ";" + List3array.ElementAt(i).ElementAt(4) + ";" + List3array.ElementAt(i).ElementAt(6); str.Replace(";;;;", ";"); str.Replace(";;;", ";"); str.Replace(";;", ";"); m_List1array.ElementAt(pos).Add(List3array.ElementAt(i).ElementAt(0)); m_List1array.ElementAt(pos).Add(str); str = List3array.ElementAt(i).ElementAt(2); m_List1array.ElementAt(pos).Add(str); payout += atof(str); #if JEFF_TEST_ON m_List1array.ElementAt(pos).Add(List3array.ElementAt(i).ElementAt(1)); #else m_List1array.ElementAt(pos).Add("固定费用"); #endif m_List1array.ElementAt(pos).Add("支出"); m_List1array.ElementAt(pos).Add(List3array.ElementAt(i).ElementAt(3) + " " + List3array.ElementAt(i).ElementAt(8)); m_List1array.ElementAt(pos).Add("现金"); m_List1array.ElementAt(pos).Add(List3array.ElementAt(i).ElementAt(5)); m_List1array.ElementAt(pos).Add(List3array.ElementAt(i).ElementAt(7)); m_List1array.ElementAt(pos).Add(List3array.ElementAt(i).ElementAt(12)); pos++; } } else if (m_radio1 == 4)//定单 { for (i = 0; i < List11array.GetSize(); i++) { if (List11array.ElementAt(i).ElementAt(5) != "预约收款")continue; dindanshu++; str = List11array.ElementAt(i).ElementAt(0); str += ";" + List11array.ElementAt(i).ElementAt(3); if (!List11array.ElementAt(i).ElementAt(1).IsEmpty()) { str += ";客户:" + List11array.ElementAt(i).ElementAt(1); if (!List11array.ElementAt(i).ElementAt(2).IsEmpty()) str += "," + List11array.ElementAt(i).ElementAt(2); } else str += ";客户:" + List11array.ElementAt(i).ElementAt(2); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(10)); m_List1array.ElementAt(pos).Add(str); str = List11array.ElementAt(i).ElementAt(4); m_List1array.ElementAt(pos).Add(str); #if 0 income+=atof(str); income2+=atof(str); #else if (List11array.ElementAt(i).ElementAt(8) != "储值卡扣款" && List11array.ElementAt(i).ElementAt(8) != "代金券") { income += atof(str); } income2 += atof(str); #endif m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(5)); m_List1array.ElementAt(pos).Add("收入"); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(7) + " " + List11array.ElementAt(i).ElementAt(13)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(8)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(9)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(11)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(12)); pos++; } } else if (m_radio1 == 5)//补款 { for (i = 0; i < List11array.GetSize(); i++) { if (List11array.ElementAt(i).ElementAt(5) != "预约补款")continue; str = List11array.ElementAt(i).ElementAt(0); str += ";" + List11array.ElementAt(i).ElementAt(3); if (!List11array.ElementAt(i).ElementAt(1).IsEmpty()) { str += ";客户:" + List11array.ElementAt(i).ElementAt(1); if (!List11array.ElementAt(i).ElementAt(2).IsEmpty()) str += "," + List11array.ElementAt(i).ElementAt(2); } else str += ";客户:" + List11array.ElementAt(i).ElementAt(2); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(10)); m_List1array.ElementAt(pos).Add(str); str = List11array.ElementAt(i).ElementAt(4); m_List1array.ElementAt(pos).Add(str); #if 0 income+=atof(str); income2+=atof(str); #else if (List11array.ElementAt(i).ElementAt(8) != "储值卡扣款" && List11array.ElementAt(i).ElementAt(8) != "代金券") { income += atof(str); } income2 += atof(str); #endif m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(5)); m_List1array.ElementAt(pos).Add("收入"); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(7) + " " + List11array.ElementAt(i).ElementAt(13)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(8)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(9)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(11)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(12)); pos++; } } else if (m_radio1 == 6)//摄影二销 { for (i = 0; i < List11array.GetSize(); i++) { if (List11array.ElementAt(i).ElementAt(5) != "摄影二销")continue; str = List11array.ElementAt(i).ElementAt(0); str += ";" + List11array.ElementAt(i).ElementAt(3); if (!List11array.ElementAt(i).ElementAt(1).IsEmpty()) { str += ";客户:" + List11array.ElementAt(i).ElementAt(1); if (!List11array.ElementAt(i).ElementAt(2).IsEmpty()) str += "," + List11array.ElementAt(i).ElementAt(2); } else str += ";客户:" + List11array.ElementAt(i).ElementAt(2); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(10)); m_List1array.ElementAt(pos).Add(str); str = List11array.ElementAt(i).ElementAt(4); m_List1array.ElementAt(pos).Add(str); #if 0 income+=atof(str); income2+=atof(str); #else if (List11array.ElementAt(i).ElementAt(8) != "储值卡扣款" && List11array.ElementAt(i).ElementAt(8) != "代金券") { income += atof(str); } income2 += atof(str); #endif m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(5)); m_List1array.ElementAt(pos).Add("收入"); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(7) + " " + List11array.ElementAt(i).ElementAt(13)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(8)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(9)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(11)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(12)); pos++; } for (i = 0; i < List2array.GetSize(); i++) { if (List2array.ElementAt(i).ElementAt(8) == "摄影二销") { if (List2array.ElementAt(i).ElementAt(7).GetLength()>120) List2array.ElementAt(i).SetAt(7, List2array.ElementAt(i).ElementAt(7).Left(120) + ".."); str = List2array.ElementAt(i).ElementAt(1) + ";" + List2array.ElementAt(i).ElementAt(4) + ";" + List2array.ElementAt(i).ElementAt(6) + ";" + List2array.ElementAt(i).ElementAt(7); str.Replace(";;;", ";"); str.Replace(";;", ";"); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(0)); m_List1array.ElementAt(pos).Add(str); str = List2array.ElementAt(i).ElementAt(2); m_List1array.ElementAt(pos).Add(str); #if 0 income+=atof(str); income2+=atof(str); #else if (List2array.ElementAt(i).ElementAt(9) != "储值卡扣款" && List2array.ElementAt(i).ElementAt(9) != "代金券") { income += atof(str); } income2 += atof(str); #endif m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(8)); m_List1array.ElementAt(pos).Add("收入"); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(3) + " " + List2array.ElementAt(i).ElementAt(11)); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(9)); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(5)); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(10)); m_List1array.ElementAt(pos).Add(" "); pos++; } } for (i = 0; i < other2salearray.GetSize(); i++) { if (other2salearray.ElementAt(i).ElementAt(3) == "摄影二销") { str = other2salearray.ElementAt(i).ElementAt(0) + ";" + other2salearray.ElementAt(i).ElementAt(1) + ";" + other2salearray.ElementAt(i).ElementAt(2); str.Replace(";;;", ";"); str.Replace(";;", ";"); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(8)); m_List1array.ElementAt(pos).Add(str); str = other2salearray.ElementAt(i).ElementAt(4); m_List1array.ElementAt(pos).Add(str); #if 0 income+=atof(str); income2+=atof(str); #else if (other2salearray.ElementAt(i).ElementAt(7) != "储值卡扣款" && other2salearray.ElementAt(i).ElementAt(7) != "代金券") { income += atof(str); } income2 += atof(str); #endif m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(3)); m_List1array.ElementAt(pos).Add("收入"); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(5) + " " + other2salearray.ElementAt(i).ElementAt(10)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(7)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(6)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(9)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(11)); pos++; } } } else if (m_radio1 == 7)//化妆二销 { for (i = 0; i < List11array.GetSize(); i++) { #ifndef CHILD_VERSION if (List11array.ElementAt(i).ElementAt(5) != "化妆二销")continue; #else if (List11array.ElementAt(i).ElementAt(5) != "引导二销")continue;//"引导二销" #endif str = List11array.ElementAt(i).ElementAt(0); str += ";" + List11array.ElementAt(i).ElementAt(3); if (!List11array.ElementAt(i).ElementAt(1).IsEmpty()) { str += ";客户:" + List11array.ElementAt(i).ElementAt(1); if (!List11array.ElementAt(i).ElementAt(2).IsEmpty()) str += "," + List11array.ElementAt(i).ElementAt(2); } else str += ";客户:" + List11array.ElementAt(i).ElementAt(2); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(10)); m_List1array.ElementAt(pos).Add(str); str = List11array.ElementAt(i).ElementAt(4); m_List1array.ElementAt(pos).Add(str); #if 0 income+=atof(str); income2+=atof(str); #else if (List11array.ElementAt(i).ElementAt(8) != "储值卡扣款" && List11array.ElementAt(i).ElementAt(8) != "代金券") { income += atof(str); } income2 += atof(str); #endif m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(5)); m_List1array.ElementAt(pos).Add("收入"); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(7) + " " + List11array.ElementAt(i).ElementAt(13)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(8)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(9)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(11)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(12)); pos++; } for (i = 0; i < List2array.GetSize(); i++) { #ifndef CHILD_VERSION if (List2array.ElementAt(i).ElementAt(8) == "化妆二销") #else if (List2array.ElementAt(i).ElementAt(8) == "引导二销") //"引导二销" #endif { if (List2array.ElementAt(i).ElementAt(7).GetLength()>120) List2array.ElementAt(i).SetAt(7, List2array.ElementAt(i).ElementAt(7).Left(120) + ".."); str = List2array.ElementAt(i).ElementAt(1) + ";" + List2array.ElementAt(i).ElementAt(4) + ";" + List2array.ElementAt(i).ElementAt(6) + ";" + List2array.ElementAt(i).ElementAt(7); str.Replace(";;;", ";"); str.Replace(";;", ";"); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(0)); m_List1array.ElementAt(pos).Add(str); str = List2array.ElementAt(i).ElementAt(2); m_List1array.ElementAt(pos).Add(str); #if 0 income+=atof(str); income2+=atof(str); #else if (List2array.ElementAt(i).ElementAt(9) != "储值卡扣款" && List2array.ElementAt(i).ElementAt(9) != "代金券") { income += atof(str); } income2 += atof(str); #endif m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(8)); m_List1array.ElementAt(pos).Add("收入"); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(3) + " " + List2array.ElementAt(i).ElementAt(11)); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(9)); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(5)); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(10)); m_List1array.ElementAt(pos).Add(" "); pos++; } } for (i = 0; i < other2salearray.GetSize(); i++) { #ifndef CHILD_VERSION if (other2salearray.ElementAt(i).ElementAt(3) == "化妆二销") #else if (other2salearray.ElementAt(i).ElementAt(3) == "引导二销") //"引导二销" #endif { str = other2salearray.ElementAt(i).ElementAt(0) + ";" + other2salearray.ElementAt(i).ElementAt(1) + ";" + other2salearray.ElementAt(i).ElementAt(2); str.Replace(";;;", ";"); str.Replace(";;", ";"); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(8)); m_List1array.ElementAt(pos).Add(str); str = other2salearray.ElementAt(i).ElementAt(4); m_List1array.ElementAt(pos).Add(str); #if 0 income+=atof(str); income2+=atof(str); #else if (other2salearray.ElementAt(i).ElementAt(7) != "储值卡扣款" && other2salearray.ElementAt(i).ElementAt(7) != "代金券") { income += atof(str); } income2 += atof(str); #endif m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(3)); m_List1array.ElementAt(pos).Add("收入"); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(5) + " " + other2salearray.ElementAt(i).ElementAt(10)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(7)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(6)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(9)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(11)); pos++; } } } else if (m_radio1 == 8)//套系升级二销 { /* for( i=0; i120) List2array.ElementAt (i).SetAt (7, List2array.ElementAt (i).ElementAt (7).Left (120)+".."); str=List2array.ElementAt (i).ElementAt (1)+";"+List2array.ElementAt (i).ElementAt (4)+";"+List2array.ElementAt (i).ElementAt (6)+";"+List2array.ElementAt (i).ElementAt (7); str.Replace (";;;", ";");str.Replace (";;", ";"); m_List1array.ElementAt (pos).Add(List2array.ElementAt (i).ElementAt (0)); m_List1array.ElementAt (pos).Add(str); str=List2array.ElementAt (i).ElementAt (2); m_List1array.ElementAt (pos).Add(str); income+=atof(str); income2+=atof(str); m_List1array.ElementAt (pos).Add(List2array.ElementAt (i).ElementAt (8)); m_List1array.ElementAt (pos).Add("收入"); m_List1array.ElementAt (pos).Add(List2array.ElementAt (i).ElementAt (3)+" "+List2array.ElementAt (i).ElementAt (11)); m_List1array.ElementAt (pos).Add(List2array.ElementAt (i).ElementAt (9)); m_List1array.ElementAt (pos).Add(List2array.ElementAt (i).ElementAt (5)); m_List1array.ElementAt (pos).Add(List2array.ElementAt (i).ElementAt (10)); m_List1array.ElementAt (pos).Add(" "); pos++; } } for( i=0; i120) List2array.ElementAt(i).SetAt(7, List2array.ElementAt(i).ElementAt(7).Left(120) + ".."); str = List2array.ElementAt(i).ElementAt(1) + ";" + List2array.ElementAt(i).ElementAt(4) + ";" + List2array.ElementAt(i).ElementAt(6) + ";" + List2array.ElementAt(i).ElementAt(7); str.Replace(";;;", ";"); str.Replace(";;", ";"); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(0)); m_List1array.ElementAt(pos).Add(str); str = List2array.ElementAt(i).ElementAt(2); m_List1array.ElementAt(pos).Add(str); #if 0 income+=atof(str); income2+=atof(str); #else if (List2array.ElementAt(i).ElementAt(9) != "储值卡扣款" && List2array.ElementAt(i).ElementAt(9) != "代金券") { income += atof(str); } income2 += atof(str); #endif m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(8)); m_List1array.ElementAt(pos).Add("收入"); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(3) + " " + List2array.ElementAt(i).ElementAt(11)); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(9)); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(5)); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(10)); m_List1array.ElementAt(pos).Add(" "); pos++; } } for (i = 0; i < other2salearray.GetSize(); i++) { if (other2salearray.ElementAt(i).ElementAt(3) == "选片二销") { str = other2salearray.ElementAt(i).ElementAt(0) + ";" + other2salearray.ElementAt(i).ElementAt(1) + ";" + other2salearray.ElementAt(i).ElementAt(2); str.Replace(";;;", ";"); str.Replace(";;", ";"); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(8)); m_List1array.ElementAt(pos).Add(str); str = other2salearray.ElementAt(i).ElementAt(4); m_List1array.ElementAt(pos).Add(str); #if 0 income+=atof(str); income2+=atof(str); #else if (other2salearray.ElementAt(i).ElementAt(7) != "储值卡扣款" && other2salearray.ElementAt(i).ElementAt(7) != "代金券") { income += atof(str); } income2 += atof(str); #endif m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(3)); m_List1array.ElementAt(pos).Add("收入"); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(5) + " " + other2salearray.ElementAt(i).ElementAt(10)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(7)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(6)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(9)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(11)); pos++; } } } else if (m_radio1 == 10)//其它收入 { for (i = 0; i < List2array.GetSize(); i++) { if (List2array.ElementAt(i).ElementAt(8) != "")continue; if (List2array.ElementAt(i).ElementAt(7).GetLength()>120) List2array.ElementAt(i).SetAt(7, List2array.ElementAt(i).ElementAt(7).Left(120) + ".."); str = List2array.ElementAt(i).ElementAt(1) + ";" + List2array.ElementAt(i).ElementAt(4) + ";" + List2array.ElementAt(i).ElementAt(6) + ";" + List2array.ElementAt(i).ElementAt(7); str.Replace(";;;", ";"); str.Replace(";;", ";"); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(0)); m_List1array.ElementAt(pos).Add(str); str = List2array.ElementAt(i).ElementAt(2); m_List1array.ElementAt(pos).Add(str); #if 0 income+=atof(str); #else if (List2array.ElementAt(i).ElementAt(9) != "储值卡扣款" && List2array.ElementAt(i).ElementAt(9) != "代金券") { income += atof(str); } #endif m_List1array.ElementAt(pos).Add("其它收入"); m_List1array.ElementAt(pos).Add("收入"); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(3) + " " + List2array.ElementAt(i).ElementAt(11)); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(9)); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(5)); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(10)); m_List1array.ElementAt(pos).Add(List2array.ElementAt(i).ElementAt(12)); pos++; } } else if(m_radio1 == 11)//其它二销 { //其它二销 for (i = 0; i < other2salearray.GetSize(); i++) { str = other2salearray.ElementAt(i).ElementAt(0) + ";" + other2salearray.ElementAt(i).ElementAt(1) + ";" + other2salearray.ElementAt(i).ElementAt(2); str.Replace(";;;", ";"); str.Replace(";;", ";"); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(8)); m_List1array.ElementAt(pos).Add(str); str = other2salearray.ElementAt(i).ElementAt(4); m_List1array.ElementAt(pos).Add(str); #if 0 income+=atof(str); income2+=atof(str); #else if (other2salearray.ElementAt(i).ElementAt(7) != "储值卡扣款" && other2salearray.ElementAt(i).ElementAt(7) != "代金券") { income += atof(str); } income2 += atof(str); #endif m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(3)); m_List1array.ElementAt(pos).Add("收入"); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(5) + " " + other2salearray.ElementAt(i).ElementAt(10)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(7)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(6)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(9)); m_List1array.ElementAt(pos).Add(other2salearray.ElementAt(i).ElementAt(11)); pos++; } } m_List1array.SetSize(pos); str.Format("%0.2f", income); ::ConvertToPrice(str); SetDlgItemText(IDC_EDITmoney1, str); // 总收入 str.Format("%0.2f", income2); ::ConvertToPrice(str); SetDlgItemText(IDC_EDITmoney5, str); // 营业收入 str.Format("%0.2f", payout); ::ConvertToPrice(str); SetDlgItemText(IDC_EDITmoney2, str); // 总支出 str.Format("%0.2f", income - payout); ::ConvertToPrice(str); SetDlgItemText(IDC_EDITmoney3, str); // 净收入 str.Format("%d", dindanshu); SetDlgItemText(IDC_EDITmoney4, str); // 订单数; FillGrid(); PaymentMethodCount(); } void DailyForm::OnRadio3() { // TODO: Add your control notification handler code here UpdateData(); KindChange(); } void DailyForm::OnRadio9() { // TODO: Add your control notification handler code here UpdateData(); KindChange(); } void DailyForm::OnRadio4() { // TODO: Add your control notification handler code here UpdateData(); KindChange(); } void DailyForm::OnRadio5() { // TODO: Add your control notification handler code here UpdateData(); KindChange(); } void DailyForm::OnRadio6() { // TODO: Add your control notification handler code here UpdateData(); KindChange(); } void DailyForm::OnRadio7() { // TODO: Add your control notification handler code here UpdateData(); KindChange(); } void DailyForm::OnRadio8() { // TODO: Add your control notification handler code here UpdateData(); KindChange(); } void DailyForm::OnRadio10() { // TODO: Add your control notification handler code here UpdateData(); KindChange(); } void DailyForm::OnRadio11() { // TODO: Add your control notification handler code here UpdateData(); KindChange(); } void DailyForm::OnRadio12() { // TODO: Add your control notification handler code here UpdateData(); KindChange(); } void DailyForm::OnRadio13() { // TODO: Add your control notification handler code here UpdateData(); KindChange(); } void DailyForm::OnRadio14() { // TODO: Add your control notification handler code here UpdateData(); if (m_radio2 == 0)m_bForKF = 0; else { m_bForKF = 1; } KindChange(); } void DailyForm::OnRadio15() { // TODO: Add your control notification handler code here OnRadio14(); } void DailyForm::OnRadio16() { // TODO: Add your control notification handler code here UpdateData(); KindChange(); //OnRadio14(); } void DailyForm::OnRadio17() { UpdateData(); KindChange(); } void DailyForm::OnBUTprint() { // TODO: Add your control notification handler code here if (m_List1.GetItemCount() == 0) { AfxMessageBox("无内容!", MB_ICONINFORMATION); return; } CArrayListarray; CString str, temp; m_static1.GetWindowText(str); CString title = g_cominfoarray.ElementAt(0).ElementAt(10) + str; int count = m_List1.GetItemCount() / 45; if (m_List1.GetItemCount() % 45)count++; Listarray.SetSize(m_List1.GetItemCount() + count, 1); int pos = 0; float otherpaytype1 = 0; float otherpaytype2 = 0; float otherpaytype3 = 0; int addpos = 1; for (int i = 0; i < m_List1.GetItemCount(); i++) { if (i % 45 == 0) { Listarray.ElementAt(pos).Add("项目名称"); Listarray.ElementAt(pos).Add("金额"); Listarray.ElementAt(pos).Add("项目类别"); Listarray.ElementAt(pos).Add("收入/支出"); pos++; } for (int j = 0; j < 3; j++) Listarray.ElementAt(pos).Add(m_List1.GetItemText(i, j + addpos)); Listarray.ElementAt(pos).Add(m_List1.GetItemText(i, 3 + addpos) + "/" + m_List1.GetItemText(i, 5 + addpos)); if (m_List1.GetItemText(i, 5 + addpos) == "POS机刷卡") otherpaytype1 += atof(m_List1.GetItemText(i, 1 + addpos)); else if (m_List1.GetItemText(i, 5 + addpos) == "储值卡扣款") otherpaytype2 += atof(m_List1.GetItemText(i, 1 + addpos)); else if (m_List1.GetItemText(i, 5 + addpos) == "积分兑换") otherpaytype3 += atof(m_List1.GetItemText(i, 1 + addpos)); pos++; } Listarray.SetSize(pos, 1); str = "总收入:"; GetDlgItemText(IDC_EDITmoney1, temp); str += temp; str += " 营业收入:"; GetDlgItemText(IDC_EDITmoney5, temp); str += temp; str += " 总支出:"; GetDlgItemText(IDC_EDITmoney2, temp); str += temp; str += " 净收入:"; GetDlgItemText(IDC_EDITmoney3, temp); str += temp; str += " 定单数:"; GetDlgItemText(IDC_EDITmoney4, temp); str += temp; str += "***"; temp.Format("POS机刷卡:%d", (int)otherpaytype1); str += temp; temp.Format(" 储值卡扣款:%d", (int)otherpaytype2); str += temp; temp.Format(" 积分兑换:%d", (int)otherpaytype3); str += temp; CString ss; GetDlgItemText(IDC_EDITmoney3, ss); //temp.Format (" 现金:%d", (int) (atof(ss)-(otherpaytype1+otherpaytype2+otherpaytype3)) ); temp.Format(" 柜台现金:%d", (int)(atof(ss) - (otherpaytype1 + otherpaytype3))); str += temp; g_pMainWnd->PrintDailyForm(&Listarray, title, str); } void DailyForm::OnBUTprint2() { // TODO: Add your control notification handler code here if (!IsHasRights2new(51))return; POSITION pos; pos = m_List1.GetFirstSelectedItemPosition(); if (pos == NULL) { AfxMessageBox("请先选中您要审核的项目!", MB_ICONINFORMATION); return; } int iItem; CStringArray array; int count = 0; while (pos) { count++; if (count > 10) { AfxMessageBox("仅前10个项目生效,请选中少于10个项目!", MB_ICONINFORMATION); break; } iItem = m_List1.GetNextSelectedItem(pos); array.Add(m_List1.GetItemText(iItem, 0)); } CString id, type, temp, sql; CString financecheck = "已审核"; if (AfxMessageBox(" 此单审核是否通过? \r\n", MB_YESNO | MB_ICONINFORMATION) != IDYES) financecheck = "未审核"; financecheck += "\\" + g_user.name; financecheck.Replace("(", "("); financecheck.Replace(")", ")"); int pos2; for (int i = 0; i < array.GetSize(); i++) { temp = array.ElementAt(i); pos2 = temp.Find(":"); if (pos2 == -1)continue; id = temp.Left(pos2); type = temp.Right(1); if (type == "0") { temp.Format("***update singleincome set financecheck='%s' where id=%s", financecheck, id); } else if (type == "1") { temp.Format("***update gudingfeiyong set financecheck='%s' where id=%s", financecheck, id); } else if (type == "2") { temp.Format("***update dindanbukuan set financecheck='%s' where autoid=%s", financecheck, id); } else if (type == "3") { temp.Format("***update singleincomemoney set financecheck='%s' where autoid=%s", financecheck, id); } else if (type == "4") { temp.Format("***update memberreg3 set financecheck='%s' where id=%s", financecheck, id); } sql += temp; } sql.TrimLeft("***"); g_sendhead.bsql = 1; g_pMainWnd->ProcessChatMessageRequest2(sql); if (g_bSendOK == 0)return; DateChange(); } void DailyForm::OnCustomdrawList(NMHDR* pNMHDR, LRESULT* pResult) { NMLVCUSTOMDRAW* pLVCD = reinterpret_cast(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(8).Find("已审核") == -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 DailyForm::OnBUTprint5() { // TODO: Add your control notification handler code here CString str; m_static1.GetWindowText(str); // m_static1.SetWindowText (strdate+"("+sdate+")财务报表"); ListToXLS(&m_List1, "c:\\" + str + ".xls", 1); } void DailyForm::OnBUTprint4() { // TODO: Add your control notification handler code here if (atoi(g_cominfoarray.ElementAt(0).ElementAt(115))) { SelExpendType dlg; dlg.m_mode = 3; if (dlg.DoModal() == IDOK) { m_jdd = dlg.m_sel; FillGrid(); PaymentMethodCount(); } } } void DailyForm::KindChange2() { m_jdd = ""; CString str; int pos = 0; int dindanshu = 0; float income = 0; float income2 = 0; float payout = 0; int count = List2array.GetSize() + List3array.GetSize() + List11array.GetSize() + other2salearray.GetSize() + memberarray.GetSize(); m_List1array.RemoveAll(); m_List1array.SetSize(count); int i = 0; for (i = 0; i < memberarray.GetSize(); i++) { if (memberarray.ElementAt(i).ElementAt(6).IsEmpty()) memberarray.ElementAt(i).SetAt(6, "未审核"); memberarray.ElementAt(i).SetAt(0, memberarray.ElementAt(i).ElementAt(0) + ":4"); } for (i = 0; i < List2array.GetSize(); i++) { if (List2array.ElementAt(i).ElementAt(10).IsEmpty()) List2array.ElementAt(i).SetAt(10, "未审核"); List2array.ElementAt(i).SetAt(0, List2array.ElementAt(i).ElementAt(0) + ":0"); } for (i = 0; i < List3array.GetSize(); i++) { if (List3array.ElementAt(i).ElementAt(7).IsEmpty()) List3array.ElementAt(i).SetAt(7, "未审核"); List3array.ElementAt(i).SetAt(0, List3array.ElementAt(i).ElementAt(0) + ":1"); } for (i = 0; i < List11array.GetSize(); i++) { if (List11array.ElementAt(i).ElementAt(11).IsEmpty()) List11array.ElementAt(i).SetAt(11, "未审核"); List11array.ElementAt(i).SetAt(10, List11array.ElementAt(i).ElementAt(10) + ":2"); } for (i = 0; i < other2salearray.GetSize(); i++) { if (other2salearray.ElementAt(i).ElementAt(9).IsEmpty()) other2salearray.ElementAt(i).SetAt(9, "未审核"); other2salearray.ElementAt(i).SetAt(8, other2salearray.ElementAt(i).ElementAt(8) + ":3"); } //if(m_radio1==2)//营业收入 { for (i = 0; i < List11array.GetSize(); i++) { if (List11array.ElementAt(i).ElementAt(5) != "客服二销")continue; str = List11array.ElementAt(i).ElementAt(0); str += ";" + List11array.ElementAt(i).ElementAt(3); if (!List11array.ElementAt(i).ElementAt(1).IsEmpty()) { str += ";客户:" + List11array.ElementAt(i).ElementAt(1); if (!List11array.ElementAt(i).ElementAt(2).IsEmpty()) str += "," + List11array.ElementAt(i).ElementAt(2); } else str += ";客户:" + List11array.ElementAt(i).ElementAt(2); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(10)); m_List1array.ElementAt(pos).Add(str); str = List11array.ElementAt(i).ElementAt(4); m_List1array.ElementAt(pos).Add(str); income += atof(str); income2 += atof(str); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(5)); m_List1array.ElementAt(pos).Add("收入"); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(7) + " " + List11array.ElementAt(i).ElementAt(13)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(8)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(9)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(11)); m_List1array.ElementAt(pos).Add(List11array.ElementAt(i).ElementAt(12)); pos++; } } m_List1array.SetSize(pos); str.Format("%0.2f", income); ::ConvertToPrice(str); SetDlgItemText(IDC_EDITmoney1, str); str.Format("%0.2f", income); ::ConvertToPrice(str); SetDlgItemText(IDC_EDITmoney5, str); str.Format("%0.2f", payout); ::ConvertToPrice(str); SetDlgItemText(IDC_EDITmoney2, str); str.Format("%0.2f", income); ::ConvertToPrice(str); SetDlgItemText(IDC_EDITmoney3, str); str.Format("%d", 0); SetDlgItemText(IDC_EDITmoney4, str); FillGrid(); PaymentMethodCount(); } void DailyForm::OnSize(UINT nType, int cx, int cy) { MyFormView::OnSize(nType, cx, cy); // TODO: 在此处添加消息处理程序代码 } //支付方式计算 void DailyForm::PaymentMethodCount() { int addpos = 1; // 列表隐藏第一列,所以要+1 float otherpaytype[9] = {0}; float fIncome = 0; // 收入 float fExpenditure = 0; // 支出 CString strName = _T(""); for (int i = 0; i < m_List1.GetItemCount(); i++) { if (m_List1.GetItemText(i, 5 + addpos) == "现金") { switch (m_radio1) { case 0: // 全部 { if(m_List1.GetItemText(i, 3 + addpos) == _T("收入")) fIncome += atof(m_List1.GetItemText(i, 1 + addpos)); else fExpenditure += atof(m_List1.GetItemText(i, 1 + addpos)); } break; case 3: // 支出 { fExpenditure += atof(m_List1.GetItemText(i, 1 + addpos)); } break; default: // 只计算收入 { fIncome += atof(m_List1.GetItemText(i, 1 + addpos)); } break; } } else if (m_List1.GetItemText(i, 5 + addpos) == "POS机刷卡") otherpaytype[1] += atof(m_List1.GetItemText(i, 1 + addpos)); else if (m_List1.GetItemText(i, 5 + addpos) == "银行转账") otherpaytype[2] += atof(m_List1.GetItemText(i, 1 + addpos)); else if (m_List1.GetItemText(i, 5 + addpos) == "储值卡扣款") otherpaytype[3] += atof(m_List1.GetItemText(i, 1 + addpos)); else if (m_List1.GetItemText(i, 5 + addpos) == "积分兑换") otherpaytype[4] += atof(m_List1.GetItemText(i, 1 + addpos)); else if (m_List1.GetItemText(i, 5 + addpos) == "代金券") otherpaytype[5] += atof(m_List1.GetItemText(i, 1 + addpos)); else if (m_List1.GetItemText(i, 5 + addpos) == "支付宝") otherpaytype[6] += atof(m_List1.GetItemText(i, 1 + addpos)); else if (m_List1.GetItemText(i, 5 + addpos) == "财付通") otherpaytype[7] += atof(m_List1.GetItemText(i, 1 + addpos)); else if (m_List1.GetItemText(i, 5 + addpos) == "微信支付") otherpaytype[8] += atof(m_List1.GetItemText(i, 1 + addpos)); } // 计算现金 CString strNum = _T(""); CString strIncome = _T(""); CString strExpenditure = _T(""); switch (m_radio1) { case 0: // 全部 { strIncome.Format(_T("%0.2f"), fIncome); ::ConvertToPrice(strIncome); strExpenditure.Format(_T("%0.2f"), fExpenditure); ::ConvertToPrice(strExpenditure); strName = _T("收入/支出现金:"); strNum.Format(_T("%s/%s"), strIncome, strExpenditure); } break; case 3: // 支出 { strExpenditure.Format(_T("%0.2f"), fExpenditure); ::ConvertToPrice(strExpenditure); strName = _T("支出现金:"); strNum = strExpenditure; } break; default: // 只计算收入 { strIncome.Format(_T("%0.2f"), fIncome); ::ConvertToPrice(strIncome); strName = _T("收入现金:"); strNum = strIncome; } break; } ((CStatic*)GetDlgItem(IDC_STATIC_cash))->SetWindowText(strName); SetDlgItemText(IDC_DCash_EDIT, strNum); strNum.Format(_T("%0.2f"), otherpaytype[1]); ::ConvertToPrice(strNum); SetDlgItemText(IDC_DPOS_EDIT, strNum); strNum.Format(_T("%0.2f"), otherpaytype[2]); ::ConvertToPrice(strNum); SetDlgItemText(IDC_DBANK_EDIT, strNum); strNum.Format(_T("%0.2f"), otherpaytype[3]); ::ConvertToPrice(strNum); SetDlgItemText(IDC_DBANKCARD_EDIT, strNum); strNum.Format(_T("%0.2f"), otherpaytype[4]); ::ConvertToPrice(strNum); SetDlgItemText(IDC_DIntegral_EDIT, strNum); strNum.Format(_T("%0.2f"), otherpaytype[5]); ::ConvertToPrice(strNum); SetDlgItemText(IDC_DVouchers_EDIT, strNum); strNum.Format(_T("%0.2f"), otherpaytype[6]); ::ConvertToPrice(strNum); SetDlgItemText(IDC_DAlipay_EDIT, strNum); strNum.Format(_T("%0.2f"), otherpaytype[7]); ::ConvertToPrice(strNum); SetDlgItemText(IDC_DTenpay_EDIT, strNum); strNum.Format(_T("%0.2f"), otherpaytype[8]); ::ConvertToPrice(strNum); SetDlgItemText(IDC_DWechatPayment_EDIT, strNum); }