123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926 |
- // Booking.cpp : implementation file
- //
- #include "stdafx.h"
- #include "ylgl.h"
- #include "Booking.h"
- #include "MyMdi.H"
- #include "ClientDlg.h"
- #include "ClientDlg2.h"
- #include "SetStyle.h"
- #include "InputMemberno.h"
- #include "SelMemberType.h"
- #include "AddMember.h"
- #include "InputCard2Dlg.h"
- #include "SPLBDlg.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // Booking pinyin1 IDC_STATIC2
- IMPLEMENT_DYNCREATE(Booking, MyFormView)
- Booking::Booking()
- : MyFormView(Booking::IDD)
- {
- //{{AFX_DATA_INIT(Booking)
- m_taoxijiage = _T("");
- m_zs = _T("");
- m_discount = _T("");
- m_money1 = _T("");
- m_money2 = _T("");
- m_money3 = _T("");
- m_name1 = _T("");
- m_name2 = _T("");
- m_payed1 = _T("");
- m_payed2 = _T("");
- m_payed3 = _T("");
- m_payed4 = _T("");
- m_payed5 = _T("");
- m_time1 = g_date;
- m_time2 = _T("");
- m_time3 = _T("");
- m_bz = _T("");
- m_clothescount = _T("");
- m_clothescount2 = _T("");
- m_outside = _T("");
- m_outside2 = _T("");
- m_style = _T("");
- m_choosephotomoney = _T("");
- m_takephotomoney = _T("");
- m_waiter6 = g_user.name;
- m_nFocusPos = 0;
- m_cost1 = m_cost2 = 0;
- //}}AFX_DATA_INIT
- }
- Booking::~Booking()
- {
- }
- void Booking::DoDataExchange(CDataExchange* pDX)
- {
- MyFormView::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(Booking)
- DDX_Control(pDX, IDC_LIST9, m_listbox1);
- DDX_Control(pDX, IDC_EDITzs, m_numedit4);
- DDX_Control(pDX, IDC_EDITtaoxijiage, m_numedit3);
- DDX_Control(pDX, IDC_EDITtime3, m_datectrl2);
- DDX_Control(pDX, IDC_EDITtime2, m_datectrl1);
- DDX_Control(pDX, IDC_EDITtime1, m_datectrl3);
- DDX_Control(pDX, IDC_EDITpayed1, m_edit2);
- DDX_Control(pDX, IDC_EDITdiscount, m_edit1);
- DDX_Control(pDX, IDC_COMBObm, m_combobm);
- DDX_Control(pDX, IDC_COMBOarea, m_comboarea);
- DDX_Control(pDX, IDC_COMBOtype2, m_combotype);
- DDX_Control(pDX, IDC_COMBOrenyuan, m_comborenyuan);
- DDX_Control(pDX, IDC_COMBOid, m_comboid);
- DDX_Control(pDX, IDC_LIST3, m_List3);
- DDX_Control(pDX, IDC_LIST1, m_List1);
- DDX_Control(pDX, IDC_STATIC1, m_static1);
- DDX_Control(pDX, IDC_COMBOtaoxiname, m_combotaoxiname);
- DDX_Text(pDX, IDC_EDITtaoxijiage, m_taoxijiage);
- DDX_Text(pDX, IDC_EDITzs, m_zs);
- DDX_Text(pDX, IDC_EDITdiscount, m_discount);
- DDX_Text(pDX, IDC_EDITmoney1, m_money1);
- DDX_Text(pDX, IDC_EDITmoney2, m_money2);
- DDX_Text(pDX, IDC_EDITmoney3, m_money3);
- DDX_Text(pDX, IDC_EDITname1, m_name1);
- DDX_Text(pDX, IDC_EDITname2, m_name2);
- DDX_Text(pDX, IDC_EDITpayed1, m_payed1);
- DDX_Text(pDX, IDC_EDITpayed2, m_payed2);
- DDX_Text(pDX, IDC_EDITpayed3, m_payed3);
- DDX_Text(pDX, IDC_EDITpayed4, m_payed4);
- DDX_Text(pDX, IDC_EDITpayed5, m_payed5);
- DDX_Text(pDX, IDC_EDITtime1, m_time1);
- DDX_Text(pDX, IDC_EDITtime2, m_time2);
- DDX_Text(pDX, IDC_EDITtime3, m_time3);
- DDX_Text(pDX, IDC_EDITbz, m_bz);
- DDV_MaxChars(pDX, m_bz, 1000);
- DDX_Text(pDX, IDC_EDITOclothescount, m_clothescount);
- DDX_Text(pDX, IDC_EDITOclothescount2, m_clothescount2);
- DDX_Text(pDX, IDC_EDITOoutside, m_outside);
- DDX_Text(pDX, IDC_EDITOoutside2, m_outside2);
- DDX_Text(pDX, IDC_EDITwaiter6, m_memberno);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(Booking, MyFormView)
- //{{AFX_MSG_MAP(Booking)
- ON_BN_CLICKED(IDC_BUTsave, OnBUTsave)
- ON_BN_CLICKED(IDC_BUTclose, OnBUTclose)
- ON_CBN_SELCHANGE(IDC_COMBOtaoxiname, OnSelchangeCOMBOtaoxiname)
- ON_BN_CLICKED(IDC_BUTspbox, OnBUTspbox)
- ON_WM_TIMER()
- ON_EN_CHANGE(IDC_EDITtaoxijiage, OnChangeEDITtaoxijiage)
- ON_EN_CHANGE(IDC_EDITdiscount, OnChangeEDITdiscount)
- ON_EN_CHANGE(IDC_EDITpayed1, OnChangeEDITpayed1)
- ON_CBN_DROPDOWN(IDC_COMBObm, OnDropdownCOMBObm)
- ON_CBN_DROPDOWN(IDC_COMBOrenyuan, OnDropdownCOMBOrenyuan)
- ON_CBN_SELCHANGE(IDC_COMBObm, OnSelchangeCOMBObm)
- ON_CBN_DROPDOWN(IDC_COMBOid, OnDropdownCOMBOid)
- ON_CBN_SELCHANGE(IDC_COMBOid, OnSelchangeCOMBOid)
- ON_BN_CLICKED(IDC_BUTWaiter, OnBUTWaiter)
- ON_BN_CLICKED(IDC_BUTTON1, OnButton1)
- ON_BN_CLICKED(IDC_BUTprint, OnBUTprint)
- ON_BN_CLICKED(IDC_BUTstyle, OnBUTstyle)
- ON_BN_CLICKED(IDC_BUTdel, OnBUTdel)
- ON_BN_CLICKED(IDC_BUTdelall, OnBUTdelall)
- ON_BN_CLICKED(IDC_BUTspbox2, OnBUTspbox2)
- ON_BN_CLICKED(IDC_BUTdel3, OnBUTdel3)
- ON_BN_CLICKED(IDC_BUTdelall2, OnBUTdelall2)
- ON_BN_CLICKED(IDC_BUTaddjd, OnBUTaddjd)
- ON_BN_CLICKED(IDC_BUTdeljd, OnBUTdeljd)
- ON_BN_CLICKED(IDC_BUTinfo1, OnBUTinfo1)
- ON_BN_CLICKED(IDC_BUTinfo2, OnBUTinfo2)
- ON_BN_CLICKED(IDC_BUTinfo3, OnBUTinfo3)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // Booking diagnostics
- #ifdef _DEBUG
- void Booking::AssertValid() const
- {
- MyFormView::AssertValid();
- }
- void Booking::Dump(CDumpContext& dc) const
- {
- MyFormView::Dump(dc);
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // Booking message handlers
- void Booking::OnInitialUpdate()
- {
- MyFormView::OnInitialUpdate();
- #ifdef NOCALCOST
- GetDlgItem(IDC_STATIC2)->ShowWindow(SW_HIDE);
- GetDlgItem(IDC_STATIC4)->ShowWindow(SW_HIDE);
- #endif
- #ifndef CHILD_VERSION
- #ifndef ZHIAI_VERSION
- GetDlgItem(IDC_STATIC10)->SetWindowText("服装套数:");
- GetDlgItem(IDC_STATIC11)->SetWindowText("造型:");
- GetDlgItem(IDC_STATIC12)->SetWindowText("外景:");
- GetDlgItem(IDC_STATIC13)->SetWindowText("内景:");
- #endif
- #endif
- // TODO: Add your specialized code here and/or call the base class
- CMyMdi Mdi;
- Mdi.SetSubView((CWnd*)GetParent(), (CWnd*)this);
- // 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);
- EnumChildWindows(m_hWnd, (WNDENUMPROC)EnumChildProc, 0);
- m_combotype.AddString("婚纱照");
- m_combotype.AddString("写真照");
- m_combotype.AddString("宝宝照");
- m_combotype.AddString("全家福");
- m_combotype.AddString("情侣照");
- m_combotaoxiname.GetWindowRect(rc2);
- ScreenToClient(rc2);
- rc2.bottom += 200;
- m_combotaoxiname.MoveWindow(rc2);
- m_combobm.GetWindowRect(rc2);
- ScreenToClient(rc2);
- rc2.bottom += 200;
- m_combobm.MoveWindow(rc2);
- m_combotype.GetWindowRect(rc2);
- ScreenToClient(rc2);
- rc2.bottom += 200;
- m_combotype.MoveWindow(rc2);
- m_comborenyuan.GetWindowRect(rc2);
- ScreenToClient(rc2);
- rc2.bottom += 200;
- m_comborenyuan.MoveWindow(rc2);
- m_comboid.GetWindowRect(rc2);
- ScreenToClient(rc2);
- rc2.bottom += 600;
- m_comboid.MoveWindow(rc2);
- #ifdef ZHIAI_VERSION
- GetDlgItem(IDC_EDITOoutside)->GetWindowRect(rc2);
- GetDlgItem(IDC_EDITOoutside)->ShowWindow(0);
- ScreenToClient(rc2);
- m_comboarea.MoveWindow (rc2);
- m_comboarea.GetWindowRect (rc2);
- ScreenToClient(rc2);
- rc2.bottom +=600;
- m_comboarea.MoveWindow (rc2);
- #else
- m_comboarea.ShowWindow(0);
- #endif
- GetDlgItem(IDC_EDITmoney1)->GetWindowRect(rc2);
- SetComboHei(&m_comboid, rc2.Height());
- SetComboHei(&m_comborenyuan, rc2.Height());
- SetComboHei(&m_combotaoxiname, rc2.Height());
- SetComboHei(&m_combobm, rc2.Height());
- SetComboHei(&m_combotype, rc2.Height());
- SetComboHei(&m_comboarea, rc2.Height());
- m_static1.SetFont(&g_titlefont);
- int i;
- #ifdef ZHIAI_VERSION
- g_sendhead.bsql=0;
- g_sendhead.code[0]=6;
- g_sendhead.code[1]=7;
- g_sendhead.code[2]=10;
- g_sendhead.code[3]=4;
- g_sendhead.code[4]=82;
- g_sendhead.tabcount=5;
- g_pMainWnd->ProcessChatMessageRequest2(6);if(g_bSendOK==0)return;
- CArray<CStringArray, CStringArray>areaarray;
- DataToArray(&m_List1array, &m_List2array, &m_List3array, &m_sparray, &areaarray);
- for( i=0; i<areaarray.GetSize(); i++)
- {
- m_comboarea.AddString(areaarray.ElementAt(i).ElementAt(0));
- }
- #else
- g_sendhead.bsql = 0;
- g_sendhead.code[0] = 6;
- g_sendhead.code[1] = 7;
- g_sendhead.code[2] = 10;
- g_sendhead.code[3] = 4;
- g_sendhead.tabcount = 4;
- g_pMainWnd->ProcessChatMessageRequest2(6); if (g_bSendOK == 0)return;
- DataToArray(&m_List1array, &m_List2array, &m_List3array, &m_sparray);
- #endif
- for (i = 0; i < m_List1array.GetSize(); i++)
- m_combotaoxiname.AddString(m_List1array.ElementAt(i).ElementAt(1));
- m_List1.InitStyle();
- m_List1.InsertColumn(0, _T("编号"), LVCFMT_LEFT, 45);
- m_List1.InsertColumn(1, _T("商品名称"), LVCFMT_LEFT, 200);
- m_List1.InsertColumn(2, _T("价格"), LVCFMT_LEFT, 60);
- m_List1.InsertColumn(3, _T("数量"), LVCFMT_LEFT, 45);
- m_List1.InsertColumn(4, _T("加急"), LVCFMT_LEFT, 45);
- m_List1.InsertColumn(5, _T("取件日期"), LVCFMT_LEFT, 90);
- m_List3.InitStyle();
- m_List3.InsertColumn(0, _T("编号"), LVCFMT_LEFT, 45);
- m_List3.InsertColumn(1, _T("商品名称"), LVCFMT_LEFT, 235);
- m_List3.InsertColumn(2, _T("价格"), LVCFMT_LEFT, 60);
- m_List3.InsertColumn(3, _T("数量"), LVCFMT_LEFT, 45);
- CRect rc;
- GetDlgItem(IDC_STATIC5)->GetWindowRect(rc);
- ScreenToClient(rc);
- OnBUTinfo1();
- rc2 = rc;
- rc2.bottom = rc2.top;
- rc2.top -= 1;
- GetDlgItem(IDC_STATIC6)->MoveWindow(rc2);
- rc2 = rc;
- rc2.top = rc2.bottom;
- rc2.bottom += 1;
- GetDlgItem(IDC_STATIC7)->MoveWindow(rc2);
- }
- void Booking::OnSelchangeCOMBOtaoxiname()
- {
- // TODO: Add your control notification handler code here
- UpdateData();
- int pos = m_combotaoxiname.GetCurSel();
- if (pos == -1)return;
- m_combotaoxiname.GetLBText(pos, taoxiname);
- pos = -1;
- for (int i = 0; i < m_List1array.GetSize(); i++)
- {
- if (taoxiname == m_List1array.ElementAt(i).ElementAt(1))
- {
- pos = i;
- break;
- }
- }
- if (pos == -1)
- {
- m_taoxiid = "";
- m_taoxijiage = "";
- m_zs = "";
- UpdateData(false);
- OnChangeEDITtaoxijiage();
- m_List1.DeleteAllItems();
- return;
- }
- m_taoxiid = m_List1array.ElementAt(pos).ElementAt(0);
- m_taoxijiage = m_List1array.ElementAt(pos).ElementAt(2);
- m_zs = m_List1array.ElementAt(pos).ElementAt(3);
- UpdateData(false);
- OnChangeEDITtaoxijiage();
- FillGrid();
- }
- void Booking::FillGrid()
- {
- m_List1.DeleteAllItems();
- m_List3.DeleteAllItems();
- int pos = 0;
- for (int i = 0; i < m_List2array.GetSize(); i++)
- {
- if (m_List2array.ElementAt(i).ElementAt(0) != m_taoxiid)continue;
- m_List1.InsertItem(pos, m_List2array.ElementAt(i).ElementAt(1));
- m_List1.SetItemText(pos, 1, GetSPNameFromId(m_List2array.ElementAt(i).ElementAt(1)));
- m_List1.SetItemText(pos, 2, GetSPPriceFromId2(m_List2array.ElementAt(i).ElementAt(1)));
- m_List1.SetItemText(pos, 3, m_List2array.ElementAt(i).ElementAt(2));
- pos++;
- }
- pos = 0;
- for (i = 0; i < m_List3array.GetSize(); i++)
- {
- if (m_List3array.ElementAt(i).ElementAt(0) != m_taoxiid)continue;
- m_List3.InsertItem(pos, m_List3array.ElementAt(i).ElementAt(1));
- m_List3.SetItemText(pos, 1, GetSPNameFromId(m_List3array.ElementAt(i).ElementAt(1)));
- m_List3.SetItemText(pos, 2, GetSPPriceFromId2(m_List3array.ElementAt(i).ElementAt(1)));
- m_List3.SetItemText(pos, 3, m_List3array.ElementAt(i).ElementAt(2));
- pos++;
- }
- CalculateCost();
- }
- float Booking::GetSPPriceFromId(CString id)
- {
- for (int i = 0; i < m_sparray.GetSize(); i++)
- {
- if (id == m_sparray.ElementAt(i).ElementAt(0))
- return atof(m_sparray.ElementAt(i).ElementAt(3));
- }
- return 0;
- }
- float Booking::GetSPPriceFromId3(CString id)
- {
- for (int i = 0; i < m_sparray.GetSize(); i++)
- {
- if (id == m_sparray.ElementAt(i).ElementAt(0))
- return atof(m_sparray.ElementAt(i).ElementAt(4));
- }
- return 0;
- }
- CString Booking::GetSPPriceFromId2(CString id)
- {
- for (int i = 0; i < m_sparray.GetSize(); i++)
- {
- if (id == m_sparray.ElementAt(i).ElementAt(0))
- return m_sparray.ElementAt(i).ElementAt(4);
- }
- return "";
- }
- CString Booking::GetSPNameFromId(CString id)
- {
- for (int i = 0; i < m_sparray.GetSize(); i++)
- {
- if (id == m_sparray.ElementAt(i).ElementAt(0))
- return m_sparray.ElementAt(i).ElementAt(1);
- }
- id.TrimLeft("0");
- for (i = 0; i < m_sparray.GetSize(); i++)
- {
- if (id == m_sparray.ElementAt(i).ElementAt(0))
- return m_sparray.ElementAt(i).ElementAt(1);
- }
- return "";
- }
- BOOL Booking::PreTranslateMessage(MSG* pMsg)
- {
- // TODO: Add your specialized code here and/or call the base class
- if (pMsg->message == WM_KEYDOWN)
- {
- switch (pMsg->wParam)
- {
- case 0x43: // copy
- if ((GetKeyState(VK_CONTROL) & 0x80))
- {
- GetFocus()->SendMessage(WM_COPY);
- return TRUE;
- }
- break;
- case 0x56: //Ctrl + V:
- if ((GetKeyState(VK_CONTROL) & 0x80))
- {
- GetFocus()->SendMessage(WM_PASTE);
- return TRUE;
- }
- break;
- case 0x58: // cut
- if ((GetKeyState(VK_CONTROL) & 0x80))
- {
- GetFocus()->SendMessage(WM_CUT);
- return TRUE;
- }
- break;
- case 0x5A: //undo
- case 0x59: //redo
- if ((GetKeyState(VK_CONTROL) & 0x80))
- {
- GetFocus()->SendMessage(WM_UNDO);
- return TRUE;
- }
- break;
- }
- }
- else if (0)//pMsg->message==WM_LBUTTONDBLCLK)
- {
- {//list1
- CPoint pt;
- CRect rc, rc2;
- ::GetCursorPos(&pt);
- m_List1.GetWindowRect(rc2);
- if (rc2.PtInRect(pt) == 0)
- goto mm;
- pt.x -= rc2.left;
- pt.y -= rc2.top;
- POSITION pos;
- pos = m_List1.GetFirstSelectedItemPosition();
- if (pos == NULL)return 1;
- int iItem = m_List1.GetNextSelectedItem(pos);
- {
- m_List1.GetSubItemRect(iItem, 3, LVIR_BOUNDS, rc);
- if (rc.PtInRect(pt))
- return MyFormView::PreTranslateMessage(pMsg);
- else
- return 1;
- }
- }
- mm: {//list3
- CPoint pt;
- CRect rc, rc2;
- ::GetCursorPos(&pt);
- m_List3.GetWindowRect(rc2);
- if (rc2.PtInRect(pt) == 0)
- return MyFormView::PreTranslateMessage(pMsg);
- pt.x -= rc2.left;
- pt.y -= rc2.top;
- POSITION pos;
- pos = m_List3.GetFirstSelectedItemPosition();
- if (pos == NULL)return 1;
- int iItem = m_List3.GetNextSelectedItem(pos);
- m_List3.GetSubItemRect(iItem, 3, LVIR_BOUNDS, rc);
- if (rc.PtInRect(pt))
- return MyFormView::PreTranslateMessage(pMsg);
- else
- return 1;
- }
- }
- if (0)//pMsg->message==WM_LBUTTONDOWN)
- {
- {//list1
- CPoint pt;
- CRect rc, rc2;
- ::GetCursorPos(&pt);
- m_List1.GetWindowRect(rc2);
- if (rc2.PtInRect(pt) == 0)
- goto oo;
- m_nFocusPos = 0;
- SetTimer(1, 300, NULL);
- goto oo;
- }
- nn:
- oo : {//list3
- CPoint pt;
- CRect rc, rc2;
- ::GetCursorPos(&pt);
- m_List3.GetWindowRect(rc2);
- if (rc2.PtInRect(pt) == 0) return MyFormView::PreTranslateMessage(pMsg);
- SetTimer(3, 300, NULL);
- }
- }
- return MyFormView::PreTranslateMessage(pMsg);
- }
- void Booking::SetSPName1()
- {
- CString str;
- for (int i = 0; i < m_List1.GetItemCount(); i++)
- {
- if (GetSPNameFromId(m_List1.GetItemText(i, 0)) != "")
- m_List1.SetItemText(i, 1, GetSPNameFromId(m_List1.GetItemText(i, 0)));
- str.Format("%f", GetSPPriceFromId(m_List1.GetItemText(i, 0)));
- ConvertToPrice(str);
- m_List1.SetItemText(i, 2, str);
- // m_List1.SetItemText(i,3, "1");
- }
- CalculateCost();
- }
- void Booking::SetSPName2()
- {
- }
- void Booking::SetSPName3()
- {
- CString str;
- for (int i = 0; i < m_List3.GetItemCount(); i++)
- {
- if (GetSPNameFromId(m_List3.GetItemText(i, 0)) != "")
- m_List3.SetItemText(i, 1, GetSPNameFromId(m_List3.GetItemText(i, 0)));
- str.Format("%f", GetSPPriceFromId(m_List3.GetItemText(i, 0)));
- ConvertToPrice(str);
- m_List3.SetItemText(i, 2, str);
- // m_List3.SetItemText(i,3, "1");
- }
- CalculateCost2();
- }
- void Booking::OnTimer(UINT nIDEvent)
- {
- // TODO: Add your message handler code here and/or call default
- if (nIDEvent == 1)
- {
- KillTimer(nIDEvent);
- SetSPName1();
- }
- else if (nIDEvent == 2)
- {
- KillTimer(nIDEvent);
- SetSPName2();
- }
- else if (nIDEvent == 3)
- {
- KillTimer(nIDEvent);
- SetSPName3();
- }
- }
- void Booking::OnBUTsave()
- {
- if (IsHasRights2(0) == 0)
- return;
- // TODO: Add your control notification handler code here
- UpdateData();
- int pos = m_comboid.GetCurSel();
- if (pos == -1)
- {
- AfxMessageBox("资料不全,打*号的项目必须填写!", MB_ICONINFORMATION);
- return;
- }
- CString id;
- m_comboid.GetLBText(pos, id);
- BOOL bAdd = 1;
- if (pos)bAdd = 0;
- if (m_name1.IsEmpty() && m_name2.IsEmpty())
- {
- AfxMessageBox("资料不全,打*号的项目必须填写!", MB_ICONINFORMATION);
- return;
- }
- if (m_name1.Find("*") != -1 || m_name2.Find("*") != -1)
- {
- AfxMessageBox("客人名字非法!", MB_ICONINFORMATION);
- return;
- }
- CalculateCost();
- CalculateCost2();
- pos = m_combotaoxiname.GetCurSel();
- if (pos != -1)
- {
- m_combotaoxiname.GetLBText(pos, taoxiname);
- }
- else
- {
- m_combotaoxiname.GetWindowText(taoxiname);
- m_taoxiid.Empty();
- }
- m_taoxijiage.TrimLeft();
- m_taoxijiage.TrimRight();
- m_payed1.TrimLeft();
- m_payed1.TrimRight();
- if (taoxiname.IsEmpty() || m_taoxijiage.IsEmpty() || m_payed1.IsEmpty() || m_zs.IsEmpty())
- {
- AfxMessageBox("资料不全,打*号的项目必须填写!", MB_ICONINFORMATION);
- return;
- }
- CString bm;
- pos = m_combobm.GetCurSel();
- if (pos != -1)
- {
- m_combobm.GetLBText(pos, bm);
- }
- CString ren, txtype, area;
- pos = m_comborenyuan.GetCurSel();
- if (pos != -1)
- {
- m_comborenyuan.GetLBText(pos, ren);
- }
- else
- {
- AfxMessageBox("资料不全,打*号的项目必须填写!", MB_ICONINFORMATION);
- return;
- }
- pos = m_combotype.GetCurSel();
- if (pos != -1)
- {
- m_combotype.GetLBText(pos, txtype);
- }
- else
- {
- AfxMessageBox("资料不全,打*号的项目必须填写!", MB_ICONINFORMATION);
- return;
- }
- #ifdef ZHIAI_VERSION
- pos=m_comboarea.GetCurSel ();
- if(pos!=-1)
- {
- m_comboarea.GetLBText (pos, area);
- }
- m_outside=area;
- #endif
- if (!CheckDateOK(m_time2))return;
- if (!CheckDateOK(m_time3))return;
- #ifndef NOCALCOST
- if (atof(m_taoxijiage) < m_cost1 + m_cost2)
- {
- if (AfxMessageBox("警告:套系价格低于成本, 可能是亏本生意, 是否继续?", MB_YESNO | MB_ICONSTOP) != IDYES)return;
- }
- #endif
- CString strmoney;
- float list3money = 0;
- strmoney.Format("%f", list3money);
- ConvertToPrice(strmoney);
- CString sql, str, str2;
- CString strRes1, strRes2;
- GetFirstLetter(m_name1, strRes1);
- GetFirstLetter(m_name2, strRes2);
- m_waiter6 = g_user.name;
- CString m_membernotemp = m_memberno;
- if (m_type)m_memberno.Empty();
- if (bAdd)
- {
- CTime time = CTime::GetCurrentTime();
- CString date = g_date;
- sql = "select max(id) as cot from dindan where time1='" + date + "' ";
- g_sendhead.bsql = 1;
- g_pMainWnd->ProcessChatMessageRequest2(sql); if (g_bSendOK == 0)return;
- date.Replace("-", "");
- id.Format("%s-%03d", date, g_ncount + 1);
- if (m_comboid.FindString(0, id) == -1)
- {
- m_comboid.InsertString(0, id);
- m_comboid.SetCurSel(0);
- }
- CString newid;
- newid.Format("%s-%03d", date, g_ncount + 2);
- m_comboid.InsertString(0, newid);
- UpdateData(false);
- m_sid = id;
- sql.Format("insert into [dindan]([id],[money1],[name1],[name2],[taoxiid],[taoxiname],[taoxijiage],[taoxizs],[time1],[time2],[time3],[bm],[ren],[discount],[payed1],[status],[status2],[status3],[status4],[status6],[status5],[status7],[status8],[urgent],[bz],[pinyin1],[pinyin2],[clothescount],[clothescount2],[outside],[outside2],[style],[waiter6],[memberno],[txtype],[tichenren1],[tichenren2],[tichenren3],[tichenren4],[tichenren5])values('%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','未拍','未选','未取','未修','未修','未设计','未刻','未看','否','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','','','','','')",
- id, strmoney, m_name1, m_name2, m_taoxiid, taoxiname, m_taoxijiage, m_zs, m_time1, m_time2, m_time3, bm, ren, m_discount, m_payed1, FilterBZ(m_bz), strRes1, strRes2, m_clothescount, m_clothescount2, m_outside, m_outside2, m_style, m_waiter6, m_memberno, txtype);
- sql += "###insert into [client](id,name1,name2)values('" + id + "','" + m_name1 + "','" + m_name2 + "')";
- CString sql2;
- sql2 = "###" + id + "$$$" + m_memberno;
- sql += sql2;
- }
- m_memberno = m_membernotemp;
- g_sendhead.bsql = 1;
- g_pMainWnd->ProcessChatMessageRequest2(sql); if (g_bSendOK == 0)return;
- CArray<CStringArray, CStringArray>sparray;
- sparray.SetSize(m_List1.GetItemCount() + m_List3.GetItemCount() + m_listbox1.GetCount());
- int realcount = 0;
- for (int i = 0; i < m_List1.GetItemCount(); i++)
- {
- str = m_List1.GetItemText(i, 1);
- str.TrimLeft(); str.TrimRight();
- if (str.IsEmpty())
- continue;
- sparray.ElementAt(realcount).Add(id);
- sparray.ElementAt(realcount).Add(m_List1.GetItemText(i, 0));
- sparray.ElementAt(realcount).Add(m_List1.GetItemText(i, 2));
- sparray.ElementAt(realcount).Add(m_List1.GetItemText(i, 3));
- sparray.ElementAt(realcount).Add("1");
- sparray.ElementAt(realcount).Add(m_List1.GetItemText(i, 1));
- sparray.ElementAt(realcount).Add(m_List1.GetItemText(i, 4));
- sparray.ElementAt(realcount).Add(m_List1.GetItemText(i, 5));
- realcount++;
- }
- for (i = 0; i < m_List3.GetItemCount(); i++)
- {
- str = m_List3.GetItemText(i, 1);
- str.TrimLeft(); str.TrimRight();
- if (str.IsEmpty())continue;
- sparray.ElementAt(realcount).Add(id);
- sparray.ElementAt(realcount).Add(m_List3.GetItemText(i, 0));
- sparray.ElementAt(realcount).Add(m_List3.GetItemText(i, 2));
- sparray.ElementAt(realcount).Add(m_List3.GetItemText(i, 3));
- sparray.ElementAt(realcount).Add("2");
- sparray.ElementAt(realcount).Add(m_List3.GetItemText(i, 1));
- sparray.ElementAt(realcount).Add("");
- sparray.ElementAt(realcount).Add("");
- realcount++;
- }
- for (i = 0; i < m_listbox1.GetCount(); i++)
- {
- m_listbox1.GetText(i, str);
- sparray.ElementAt(realcount).Add(id);
- sparray.ElementAt(realcount).Add(str);
- realcount++;
- }
- sparray.SetSize(realcount);
- if (realcount == 0)
- {
- sparray.SetSize(1);
- sparray.ElementAt(0).Add(id);
- }
- CMemFile memfile;
- CArchive ar(&memfile, CArchive::store);
- for (int ii = 0; ii < sparray.GetSize(); ii++)
- {
- sparray.ElementAt(ii).Serialize(ar);
- }
- ar.Close();
- int length = memfile.GetLength();
- BYTE *pData = memfile.Detach();
- int size = sparray.GetSize();
- BYTE *pData2 = new BYTE[length + sizeof(int)];
- memcpy(pData2, pData, length);
- memcpy(pData2 + length, &size, sizeof(int));
- delete[]pData;
- length += sizeof(int);
- g_nSendCode = 3;
- g_pMainWnd->ProcessChatMessageRequest2(pData2, length);
- g_nSendCode = 0;
- delete[]pData2;
- if (g_bSendOK == 0)return;
- AfxMessageBox("保存成功!", MB_ICONINFORMATION);
- if (m_type == 1 || m_type == 3)
- SaveCard2Data();
- GetDlgItem(IDC_BUTsave)->EnableWindow(0);
- GetDlgItem(IDC_BUTclient)->EnableWindow(1);
- GetDlgItem(IDC_BUTprint)->EnableWindow(1);
- if (IsHasRights2(4))
- GetDlgItem(IDC_BUTWaiter)->EnableWindow(1);
- CString phone;
- if (bAdd)
- {
- #ifdef CHILD_VERSION
- CClientDlg2 dlg;
- #else
- CClientDlg dlg;
- dlg.m_hqtime=m_time3;
- #endif
- dlg.m_phone1 = m_phone1;
- dlg.m_phone2 = m_phone2;
- dlg.m_bAdd = 1;
- dlg.m_bNeedSendMsg = 1;
- dlg.id = id;
- dlg.m_name1 = m_name1;
- dlg.m_name2 = m_name2;
- if (dlg.DoModal() == IDOK)
- {
- #ifdef CHILD_VERSION
- phone = dlg.m_phone1;
- #else
- phone=dlg.m_phone2 ;
- #endif
- m_name1 = dlg.m_name1;
- m_name2 = dlg.m_name2;
- UpdateData(false);
- }
- }
- BOOL bNeedCard = 0;
- if (m_type == 1 || m_type == 2 || m_type == 3)
- bNeedCard = 1;
- if (m_memberno.IsEmpty())
- bNeedCard = 1;
- if (bNeedCard)
- {
- SelMemberType dlg;
- if (dlg.DoModal() == IDOK)
- {
- if (dlg.m_type == 0)
- {
- AddMember dlg;
- dlg.m_name = m_name2;
- dlg.m_phone = phone;
- if (dlg.DoModal() == IDOK)
- {
- if (AfxMessageBox("会员添加成功,是否发放副卡?", MB_YESNO | MB_ICONINFORMATION) == IDYES)
- {
- InputCard2Dlg dlg2;
- dlg2.m_name = dlg.m_name;
- dlg2.m_no = dlg.m_memberno;
- dlg2.DoModal();
- }
- sql = "update dindan set [memberno]='" + dlg.m_memberno + "' where [id]='" + id + "'";
- g_sendhead.bsql = 1;
- g_pMainWnd->ProcessChatMessageRequest2(sql); if (g_bSendOK == 0)return;
- }
- }
- else
- {
- AddMember dlg;
- dlg.m_mode = 1;
- dlg.m_name = m_name2;
- dlg.m_phone = phone;
- dlg.m_jiage = m_money1;
- if (dlg.DoModal() == IDOK)
- {
- if (AfxMessageBox("会员添加成功,是否发放副卡?", MB_YESNO | MB_ICONINFORMATION) == IDYES)
- {
- InputCard2Dlg dlg2;
- dlg2.m_mode = 1;
- dlg2.m_name = dlg.m_name;
- dlg2.m_no = dlg.m_memberno;
- dlg2.DoModal();
- }
- sql = "update dindan set [memberno]='" + dlg.m_memberno + "' where [id]='" + id + "'";
- g_sendhead.bsql = 1;
- g_pMainWnd->ProcessChatMessageRequest2(sql); if (g_bSendOK == 0)return;
- }
- }
- }
- }
- }
- void Booking::OnBUTclose()
- {
- // TODO: Add your control notification handler code here
- GetParent()->SendMessage(WM_CLOSE);
- }
- void Booking::OnChangeEDITtaoxijiage()
- {
- // 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.
- /* UpdateData();
- CString str;
- float list3money=0;
- for(int i=0; i<m_List3.GetItemCount (); i++)
- {
- list3money+=GetSPPriceFromId(m_List3.GetItemText (i, 0))*atof(m_List3.GetItemText(i,3));
- }
- m_money1.Format ("%f", list3money+atof(m_taoxijiage)-atof(m_discount));
- m_money2=m_payed1;
- m_money3.Format ("%f", atof(m_money1)-atof(m_money2));
- ConvertToPrice(m_money1);
- ConvertToPrice(m_money2);
- ConvertToPrice(m_money3);
- UpdateData(false);
- */
- UpdateData();
- CString str;
- float list3money = 0;
- /* for(int i=0; i<m_List3.GetItemCount (); i++)
- {
- list3money+=GetSPPriceFromId(m_List3.GetItemText (i, 0))*atof(m_List3.GetItemText(i,3));
- }*/
- m_money1.Format("%f", list3money + atof(m_taoxijiage) - atof(m_discount) + atof(m_payed4));
- m_money2.Format("%f", atof(m_payed5));
- m_money3.Format("%f", atof(m_money1) - atof(m_money2));
- ConvertToPrice(m_money1);
- ConvertToPrice(m_money2);
- ConvertToPrice(m_money3);
- UpdateData(false);
- // TODO: Add your control notification handler code here
- }
- void Booking::OnChangeEDITdiscount()
- {
- // 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.
- OnChangeEDITtaoxijiage();
- // TODO: Add your control notification handler code here
- }
- void Booking::OnChangeEDITpayed1()
- {
- // 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.
- OnChangeEDITtaoxijiage();
- // TODO: Add your control notification handler code here
- }
- void Booking::OnDropdownCOMBObm()
- {
- // TODO: Add your control notification handler code here
- if (m_combobm.GetCount() < 2)
- {
- g_sendhead.bsql = 0;
- g_sendhead.code[0] = 3;
- g_sendhead.tabcount = 1;
- g_pMainWnd->ProcessChatMessageRequest2(3); if (g_bSendOK == 0)return;
- DataToArray(&g_List1array);
- for (int ii = 0; ii < g_List1array.GetSize(); ii++)
- m_combobm.AddString(g_List1array.ElementAt(ii).ElementAt(0));
- }
- }
- void Booking::OnDropdownCOMBOrenyuan()
- {
- // TODO: Add your control notification handler code here
- if (m_renyuanarray.GetSize() == 0)
- {
- for (int ii = 0; ii < g_userarray.GetSize(); ii++)
- {
- m_renyuanarray.Add(g_userarray.ElementAt(ii).ElementAt(2));
- m_renyuanarray.Add(g_userarray.ElementAt(ii).ElementAt(1));
- }
- }
- m_comborenyuan.ResetContent();
- int pos = m_combobm.GetCurSel();
- if (pos == -1)
- {
- for (int ii = 0; ii < m_renyuanarray.GetSize(); ii += 2)
- {
- m_comborenyuan.AddString(m_renyuanarray.ElementAt(ii + 1));
- }
- }
- else
- {
- CString str;
- m_combobm.GetLBText(pos, str);
- for (int ii = 0; ii < m_renyuanarray.GetSize(); ii += 2)
- {
- if (str == m_renyuanarray.ElementAt(ii))
- m_comborenyuan.AddString(m_renyuanarray.ElementAt(ii + 1));
- }
- }
- }
- void Booking::OnSelchangeCOMBObm()
- {
- // TODO: Add your control notification handler code here
- m_comborenyuan.ResetContent();
- m_comborenyuan.SetCurSel(-1);
- }
- void Booking::OnDropdownCOMBOid()
- {
- // TODO: Add your control notification handler code here
- if (m_comboid.GetCount() == 0)
- {
- CString date = g_date;
- CString sql;
- // sql="select count(*) as cot from dindan where time1='"+date+"' ";
- sql = "select max(id) as cot from dindan where time1='" + date + "' ";
- g_sendhead.bsql = 1;
- g_pMainWnd->ProcessChatMessageRequest2(sql); if (g_bSendOK == 0)return;
- date.Replace("-", "");
- CString id;
- id.Format("%s-%03d", date, g_ncount + 1);
- m_comboid.AddString(id);
- }
- }
- void Booking::OnSelchangeCOMBOid()
- {
- // TODO: Add your control notification handler code here
- int pos = m_comboid.GetCurSel();
- m_phone1 = m_phone2 = "";
- GetDlgItem(IDC_BUTprint)->EnableWindow(pos);
- if (IsHasRights2new(0))
- {
- GetDlgItem(IDC_BUTsave)->EnableWindow(pos == 0);
- // GetDlgItem(IDC_BUTclient)->EnableWindow(pos==0);
- }
- else
- GetDlgItem(IDC_BUTsave)->EnableWindow(0);
- //订单修改权限
- // GetDlgItem(IDC_BUTsave)->EnableWindow(IsHasRights2new(1));
- // if(pos)
- // GetDlgItem(IDC_BUTclient)->EnableWindow(IsHasRights2new(1));
- m_memberno = "";
- m_memberno2 = "";
- m_type = 0;
- if (pos < 1)
- {
- ClearCtrl();
- InputMemberno dlg;
- dlg.m_bNoAdd = 1;
- if (dlg.DoModal() == IDOK)
- {
- m_memberno = dlg.m_memberno;
- m_memberno2 = dlg.m_memberno2;
- m_type = dlg.m_type;
- m_memberno2date = dlg.m_memberno2date;
- m_membernoname = dlg.m_membernoname;
- m_membernosex = dlg.m_membernosex;
- m_membernophone = dlg.m_membernophone;
- m_membernojiage = dlg.m_membernojiage;
- SetDlgItemText(IDC_EDITwaiter6, m_memberno);
- }
- return;
- }
- CString id;
- m_comboid.GetLBText(pos, id);
- CString filter = "id='" + id + "';id='" + id + "' and kind<>'4' and kind<>'5'";
- g_sendhead.code[0] = 11;
- g_sendhead.code[1] = 50;
- g_sendhead.tabcount = 2;
- g_sendhead.bsql = 0;
- g_pMainWnd->ProcessChatMessageRequest2(filter); if (g_bSendOK == 0)return;
- CArray<CStringArray, CStringArray>sparray;
- DataToArray(&g_List1array, &sparray);
- CString bm, ren;
- m_takephotomoney = g_List1array.ElementAt(0).ElementAt(2);
- m_choosephotomoney = g_List1array.ElementAt(0).ElementAt(3);
- m_name1 = g_List1array.ElementAt(0).ElementAt(4);
- m_name2 = g_List1array.ElementAt(0).ElementAt(5);
- m_taoxiid = g_List1array.ElementAt(0).ElementAt(6);
- taoxiname = g_List1array.ElementAt(0).ElementAt(7);
- m_taoxijiage = g_List1array.ElementAt(0).ElementAt(8);
- m_zs = g_List1array.ElementAt(0).ElementAt(9);
- m_time1 = g_List1array.ElementAt(0).ElementAt(10);
- m_time2 = g_List1array.ElementAt(0).ElementAt(11);
- m_time3 = g_List1array.ElementAt(0).ElementAt(12);
- bm = g_List1array.ElementAt(0).ElementAt(13);
- ren = g_List1array.ElementAt(0).ElementAt(14);
- m_discount = g_List1array.ElementAt(0).ElementAt(15);
- m_payed1 = g_List1array.ElementAt(0).ElementAt(16);
- m_payed2 = g_List1array.ElementAt(0).ElementAt(17);
- m_payed3 = g_List1array.ElementAt(0).ElementAt(18);
- m_payed4 = g_List1array.ElementAt(0).ElementAt(19);
- m_payed5 = g_List1array.ElementAt(0).ElementAt(20);
- m_clothescount = g_List1array.ElementAt(0).ElementAt(26);
- m_clothescount2 = g_List1array.ElementAt(0).ElementAt(27);
- m_outside = g_List1array.ElementAt(0).ElementAt(28);
- m_outside2 = g_List1array.ElementAt(0).ElementAt(29);
- m_style = g_List1array.ElementAt(0).ElementAt(30);
- m_waiter1 = g_List1array.ElementAt(0).ElementAt(34);
- m_waiter2 = g_List1array.ElementAt(0).ElementAt(35);
- m_waiter3 = g_List1array.ElementAt(0).ElementAt(36);
- m_waiter4 = g_List1array.ElementAt(0).ElementAt(37);
- m_bz = g_List1array.ElementAt(0).ElementAt(38);
- m_waiter6 = g_List1array.ElementAt(0).ElementAt(41);
- pos = m_combotaoxiname.FindString(0, taoxiname);
- if (pos == -1)
- {
- m_combotaoxiname.InsertString(0, taoxiname);
- m_combotaoxiname.SetCurSel(0);
- }
- else
- m_combotaoxiname.SetCurSel(pos);
- pos = m_combobm.FindString(0, bm);
- if (pos == -1)
- {
- m_combobm.ResetContent();
- m_combobm.InsertString(0, bm);
- m_combobm.SetCurSel(0);
- }
- else
- m_combobm.SetCurSel(pos);
- pos = m_comborenyuan.FindString(0, ren);
- if (pos == -1)
- {
- m_comborenyuan.InsertString(0, ren);
- m_comborenyuan.SetCurSel(0);
- }
- else
- m_comborenyuan.SetCurSel(pos);
- UpdateData(false);
- m_List1.DeleteAllItems();
- m_List3.DeleteAllItems();
- int listpos[2] = { 0 };
- CEditListCtrl *pList[2] = { &m_List1, &m_List3 };
- for (int i = 0; i < sparray.GetSize(); i++)
- {
- pos = atoi(sparray.ElementAt(i).ElementAt(4)) - 1;
- if (pos>1)pos = 0;
- pList[pos]->InsertItem(listpos[pos], sparray.ElementAt(i).ElementAt(1));
- pList[pos]->SetItemText(listpos[pos], 1, sparray.ElementAt(i).ElementAt(5));
- pList[pos]->SetItemText(listpos[pos], 2, sparray.ElementAt(i).ElementAt(2));
- pList[pos]->SetItemText(listpos[pos], 3, sparray.ElementAt(i).ElementAt(3));
- listpos[pos]++;
- }
- OnChangeEDITtaoxijiage();
- CalculateCost();
- CalculateCost2();
- }
- void Booking::ClearCtrl()
- {
- m_money1 = _T("");
- m_money2 = _T("");
- m_money3 = _T("");
- m_choosephotomoney = _T("");
- m_name1 = _T("");
- m_name2 = _T("");
- m_taoxiid = _T("");
- m_taoxijiage = _T("");
- m_zs = _T("");
- m_time1 = g_date;
- m_time2 = _T("");
- m_time3 = _T("");
- m_bz = _T("");
- m_discount = _T("");
- m_payed1 = _T("");
- m_payed2 = _T("");
- m_payed3 = _T("");
- m_payed4 = _T("");
- m_payed5 = _T("");
- m_clothescount = _T("");
- m_clothescount2 = _T("");
- m_outside = _T("");
- m_outside2 = _T("");
- m_style = _T("");
- m_waiter1 = _T("");
- m_waiter2 = _T("");
- m_waiter3 = _T("");
- m_waiter4 = _T("");
- m_waiter6 = g_user.name;
- m_combotaoxiname.SetCurSel(-1);
- m_combobm.SetCurSel(-1);
- m_comborenyuan.SetCurSel(-1);
- UpdateData(false);
- m_List1.DeleteAllItems();
- m_List3.DeleteAllItems();
- }
- void Booking::OnBUTWaiter()
- {
- if (AfxMessageBox("是否导入订单?", MB_YESNO | MB_ICONINFORMATION) != IDYES)return;
- CFileDialog fdlg(true, NULL, "", OFN_HIDEREADONLY, "影楼订单文件(*.*)|*.dan||");
- if (fdlg.DoModal() != IDOK)return;
- CString path = fdlg.GetFileName();
- CArray<CStringArray, CStringArray>g_Sel1array[20];//精英团队
- CArray<CStringArray, CStringArray>g_Sel2array[20];//景点介绍
- CArray<CStringArray, CStringArray>g_Sel3array[20];//套系内容
- CArray<CStringArray, CStringArray>g_Sel4array[20];//产品展示
- CArray<CStringArray, CStringArray>g_Sel5array[20];//礼服介绍
- CString g_name1;
- CString g_name2;
- CString g_phone1;
- CString g_phone2;
- CString g_price1;
- CString g_price2;
- CString g_date;
- {
- CString str = path;
- int pos = str.Find(".");
- if (pos == -1)return;
- str = str.Left(pos);
- pos = str.Find(" ");
- if (pos == -1)return;
- g_name1 = str.Left(pos); str = str.Right(str.GetLength() - pos - 1);
- pos = str.Find(" ");
- if (pos == -1)return;
- g_name2 = str.Left(pos); str = str.Right(str.GetLength() - pos - 1);
- pos = str.Find(" ");
- if (pos == -1)return;
- g_phone1 = str.Left(pos); str = str.Right(str.GetLength() - pos - 1);
- pos = str.Find(" ");
- if (pos == -1)return;
- g_phone2 = str.Left(pos); str = str.Right(str.GetLength() - pos - 1);
- }
- int length[100];
- CFile fp;
- fp.Open(path, CFile::modeRead);
- int fileleng = fp.GetLength();
- int memlength = fileleng - sizeof(int) * 100;
- for (int i = 0; i < 100; i++)
- fp.Read(length + i, sizeof(int));
- for (i = 0; i < 20; i++)
- g_Sel1array[i].SetSize(length[i]);
- for (i = 0; i < 20; i++)
- g_Sel2array[i].SetSize(length[20 + i]);
- for (i = 0; i < 20; i++)
- g_Sel3array[i].SetSize(length[40 + i]);
- for (i = 0; i < 20; i++)
- g_Sel4array[i].SetSize(length[60 + i]);
- for (i = 0; i < 20; i++)
- g_Sel5array[i].SetSize(length[80 + i]);
- BYTE *pData = new BYTE[memlength];
- fp.Read(pData, memlength);
- fp.Close();
- CMemFile memfile;
- memfile.Attach(pData, memlength);
- CArchive ar(&memfile, CArchive::load);
- for (i = 0; i < 20; i++)
- {
- for (int j = 0; j < length[i]; j++)
- g_Sel1array[i].ElementAt(j).Serialize(ar);
- }
- for (i = 0; i < 20; i++)
- {
- for (int j = 0; j < g_Sel2array[i].GetSize(); j++)
- g_Sel2array[i].ElementAt(j).Serialize(ar);
- }
- for (i = 0; i < 20; i++)
- {
- for (int j = 0; j < g_Sel3array[i].GetSize(); j++)
- g_Sel3array[i].ElementAt(j).Serialize(ar);
- }
- for (i = 0; i < 20; i++)
- {
- for (int j = 0; j < g_Sel4array[i].GetSize(); j++)
- g_Sel4array[i].ElementAt(j).Serialize(ar);
- }
- for (i = 0; i < 20; i++)
- {
- for (int j = 0; j < g_Sel5array[i].GetSize(); j++)
- g_Sel5array[i].ElementAt(j).Serialize(ar);
- }
- ar.Close();
- memfile.Detach();
- delete[]pData;
- if (g_Sel5array[19].GetSize())
- {
- g_price1 = g_Sel5array[19].ElementAt(0).ElementAt(0);
- g_price2 = g_Sel5array[19].ElementAt(0).ElementAt(1);
- }
- else
- {
- g_price1 = g_price2 = "";
- }
- OnDropdownCOMBOid();
- m_comboid.SetCurSel(0);
- OnSelchangeCOMBOid();
- m_name1 = g_name1;
- m_name2 = g_name2;
- CStringArray array;
- for (i = 0; i < 19; i++)
- {
- for (int j = 0; j < g_Sel3array[i].GetSize(); j++)
- {
- if (g_Sel3array[i].ElementAt(j).GetSize() < 2)continue;
- int count = g_Sel3array[i].ElementAt(j).GetSize();
- for (int a = 1; a < count; a++)
- {
- if (a == 1)
- {
- CString taoxiname = g_Sel3array[i].ElementAt(j).ElementAt(a);
- m_combotaoxiname.InsertString(0, taoxiname);
- m_combotaoxiname.SetCurSel(0);
- }
- else
- {
- CString str = g_Sel3array[i].ElementAt(j).ElementAt(a);
- CString dir, name;
- int pos = str.ReverseFind('\\');
- dir = str.Left(pos);
- name = str.Right(str.GetLength() - pos - 1);
- array.Add(name);
- }
- }
- }
- }
- for (i = 0; i < 19; i++)
- {
- for (int j = 0; j < g_Sel4array[i].GetSize(); j++)
- {
- int count = g_Sel4array[i].ElementAt(j).GetSize();
- for (int a = 1; a < count; a++)
- {
- array.Add(g_Sel4array[i].ElementAt(j).ElementAt(a));
- }
- }
- }
- for (i = 0; i < array.GetSize(); i++)
- {
- int pos = m_List1.GetItemCount();
- CString str;
- if (pos)
- {
- if (m_List1.GetItemText(pos - 1, 0).IsEmpty() && m_List1.GetItemText(pos - 1, 1).IsEmpty())
- {
- pos--;
- m_List1.SetItemText(pos, 0, "");
- m_List1.SetItemText(pos, 1, array.ElementAt(i));
- m_List1.SetItemText(pos, 2, "");
- m_List1.SetItemText(pos, 3, "1");
- }
- else
- {
- m_List1.InsertItem(pos, "");
- m_List1.SetItemText(pos, 1, array.ElementAt(i));
- m_List1.SetItemText(pos, 2, "");
- m_List1.SetItemText(pos, 3, "1");
- }
- }
- else
- {
- m_List1.InsertItem(pos, "");
- m_List1.SetItemText(pos, 1, array.ElementAt(i));
- m_List1.SetItemText(pos, 2, "");
- m_List1.SetItemText(pos, 3, "1");
- }
- }
- if (g_Sel5array[19].GetSize())
- {
- g_price1 = g_Sel5array[19].ElementAt(0).ElementAt(0);
- g_price2 = g_Sel5array[19].ElementAt(0).ElementAt(1);
- }
- else
- {
- g_price1 = g_price2 = "";
- }
- m_taoxijiage = g_price1;
- m_payed1 = g_price2;
- UpdateData(false);
- m_phone1 = g_phone1;
- m_phone2 = g_phone2;
- OnChangeEDITtaoxijiage();
- }
- void Booking::OnButton1()
- {
- // TODO: Add your control notification handler code here
- /* CTime tm=CTime::GetCurrentTime ();
- CTimeSpan dt(1, 0, 0, 0);
- CTimeSpan dt2(25, 0, 0, 0);
- CTime tm2=tm-dt2;
- while(tm>tm2)
- {
- CString filter;
- filter="id like '";
- filter+=tm2.Format("%Y%m%d");
- filter+="%'";
- tm2+=dt;
- g_sendhead.code[0]=50;
- g_sendhead.tabcount=1;
- g_sendhead.bsql=0;
- g_pMainWnd->ProcessChatMessageRequest2(filter);if(g_bSendOK==0)return;
- CArray<CStringArray, CStringArray>sparray;
- DataToArray(&sparray);
- m_List1.DeleteAllItems ();
- m_List3.DeleteAllItems ();
- int listpos[3]={0};int pos;
- CEditListCtrl *pList[3]={&m_List1,&m_List2,&m_List3};
- for(int i=0; i<sparray.GetSize (); i++)
- {
- pos=atoi(sparray.ElementAt (i).ElementAt (4))-1;
- pList[pos]->InsertItem(listpos[pos], sparray.ElementAt (i).ElementAt (1));
- pList[pos]->SetItemText(listpos[pos], 1, GetSPNameFromId(sparray.ElementAt (i).ElementAt (1)));
- if(pos<2)
- pList[pos]->SetItemText(listpos[pos], 2, sparray.ElementAt (i).ElementAt (0));
- else
- {
- pList[pos]->SetItemText(listpos[pos], 2, sparray.ElementAt (i).ElementAt (0));
- pList[pos]->SetItemText(listpos[pos], 3, sparray.ElementAt (i).ElementAt (0));
- }
- listpos[pos]++;
- }
- CArray<CStringArray, CStringArray>savearray;
- savearray.SetSize(m_List1.GetItemCount ());
- CString sql,id,spid,name;
- for( i=0; i<m_List1.GetItemCount (); i++)
- {
- spid=m_List1.GetItemText (i, 0);
- id= m_List1.GetItemText (i, 2) ;
- name=m_List1.GetItemText (i, 1);
- sql="update dindansp set name='"+name+"' where id='"+id+"' and spid='"+spid+"'";
- g_sendhead.bsql=1;
- g_pMainWnd->ProcessChatMessageRequest2(sql);if(g_bSendOK==0)return;
- }
- for( i=0; i<m_List3.GetItemCount (); i++)
- {
- spid=m_List3.GetItemText (i, 0);
- id= m_List3.GetItemText (i, 3) ;
- name=m_List3.GetItemText (i, 1);
- sql="update dindansp set name='"+name+"' where id='"+id+"' and spid='"+spid+"'";
- g_sendhead.bsql=1;
- g_pMainWnd->ProcessChatMessageRequest2(sql);if(g_bSendOK==0)return;
- }
- }*/
- }
- void Booking::OnBUTprint()
- {
- // TODO: Add your control notification handler code here
- int pos = m_comboid.GetCurSel();
- if (pos == -1)
- {
- return;
- }
- CString id;
- m_comboid.GetLBText(pos, id);
- g_pMainWnd->PrintDinDan(id);
- }
- void Booking::OnBUTstyle()
- {
- // TODO: Add your control notification handler code here
- SetStyle dlg;
- dlg.m_style = m_style;
- if (dlg.DoModal() == IDOK)
- m_style = dlg.m_style;
- }
- void Booking::OnBUTspbox()
- {
- // TODO: Add your control notification handler code here
- SPBox dlg;
- #ifndef CHILD_VERSION
- dlg.m_mode=1;
- #endif
- if (dlg.DoModal() != IDOK)return;
- for (int a = 0; a < dlg.m_spidarray.GetSize(); a++)
- {
- dlg.m_spid = dlg.m_spidarray.ElementAt(a);
- dlg.m_spname = dlg.m_spnamearray.ElementAt(a);
- int pos = m_List3.GetItemCount();
- CString str;
- if (pos)
- {
- if (m_List3.GetItemText(pos - 1, 0).IsEmpty() && m_List3.GetItemText(pos - 1, 1).IsEmpty())
- {
- pos--;
- m_List3.SetItemText(pos, 0, dlg.m_spid);
- m_List3.SetItemText(pos, 1, GetSPNameFromId(dlg.m_spid));
- str.Format("%f", GetSPPriceFromId3(dlg.m_spid));
- ConvertToPrice(str);
- m_List3.SetItemText(pos, 2, str);
- m_List3.SetItemText(pos, 3, "1");
- }
- else
- {
- m_List3.InsertItem(pos, dlg.m_spid);
- m_List3.SetItemText(pos, 1, GetSPNameFromId(dlg.m_spid));
- str.Format("%f", GetSPPriceFromId3(dlg.m_spid));
- ConvertToPrice(str);
- m_List3.SetItemText(pos, 2, str);
- m_List3.SetItemText(pos, 3, "1");
- }
- }
- else
- {
- m_List3.InsertItem(pos, dlg.m_spid);
- m_List3.SetItemText(pos, 1, GetSPNameFromId(dlg.m_spid));
- str.Format("%f", GetSPPriceFromId3(dlg.m_spid));
- ConvertToPrice(str);
- m_List3.SetItemText(pos, 2, str);
- m_List3.SetItemText(pos, 3, "1");
- }
- }
- CalculateCost2();
- }
- void Booking::OnBUTdel()
- {
- // TODO: Add your control notification handler code here
- POSITION pos;
- pos = m_List3.GetFirstSelectedItemPosition();
- if (pos == NULL)
- {
- AfxMessageBox("请先选中您要删除的项目!", MB_ICONINFORMATION);
- return;
- }
- int iItem = m_List3.GetNextSelectedItem(pos);
- m_List3.DeleteItem(iItem);
- CalculateCost2();
- int count = m_List3.GetItemCount();
- if (count == 0)return;
- if (iItem == count)
- iItem = 0;
- m_List3.SetItemState(iItem, LVIS_SELECTED, LVIS_SELECTED);
- }
- void Booking::OnBUTdelall()
- {
- // TODO: Add your control notification handler code here
- m_List3.DeleteAllItems();
- CalculateCost2();
- }
- void Booking::OnBUTspbox2()
- {
- // TODO: Add your control notification handler code here
- SPBox dlg;
- if (dlg.DoModal() != IDOK)return;
- for (int a = 0; a < dlg.m_spidarray.GetSize(); a++)
- {
- dlg.m_spid = dlg.m_spidarray.ElementAt(a);
- dlg.m_spname = dlg.m_spnamearray.ElementAt(a);
- int pos = m_List1.GetItemCount();
- CString str;
- if (pos)
- {
- if (m_List1.GetItemText(pos - 1, 0).IsEmpty() && m_List1.GetItemText(pos - 1, 1).IsEmpty())
- {
- pos--;
- m_List1.SetItemText(pos, 0, dlg.m_spid);
- m_List1.SetItemText(pos, 1, GetSPNameFromId(dlg.m_spid));
- str.Format("%f", GetSPPriceFromId3(dlg.m_spid));
- ConvertToPrice(str);
- m_List1.SetItemText(pos, 2, str);
- m_List1.SetItemText(pos, 3, "1");
- }
- else
- {
- m_List1.InsertItem(pos, dlg.m_spid);
- m_List1.SetItemText(pos, 1, GetSPNameFromId(dlg.m_spid));
- str.Format("%f", GetSPPriceFromId3(dlg.m_spid));
- ConvertToPrice(str);
- m_List1.SetItemText(pos, 2, str);
- m_List1.SetItemText(pos, 3, "1");
- }
- }
- else
- {
- m_List1.InsertItem(pos, dlg.m_spid);
- m_List1.SetItemText(pos, 1, GetSPNameFromId(dlg.m_spid));
- str.Format("%f", GetSPPriceFromId3(dlg.m_spid));
- ConvertToPrice(str);
- m_List1.SetItemText(pos, 2, str);
- m_List1.SetItemText(pos, 3, "1");
- }
- }
- CalculateCost();
- }
- void Booking::OnBUTdel3()
- {
- // TODO: Add your control notification handler code here
- POSITION pos;
- pos = m_List1.GetFirstSelectedItemPosition();
- if (pos == NULL)
- {
- AfxMessageBox("请先选中您要删除的项目!", MB_ICONINFORMATION);
- return;
- }
- if (AfxMessageBox("确定要删除套系中的商品吗?", MB_YESNO | MB_ICONINFORMATION) != IDYES)return;
- int iItem = m_List1.GetNextSelectedItem(pos);
- m_List1.DeleteItem(iItem);
- CalculateCost();
- int count = m_List1.GetItemCount();
- if (count == 0)return;
- if (iItem == count)
- iItem = 0;
- m_List1.SetItemState(iItem, LVIS_SELECTED, LVIS_SELECTED);
- }
- void Booking::OnBUTdelall2()
- {
- // TODO: Add your control notification handler code here
- if (AfxMessageBox("确定要删除套系中的商品吗?", MB_YESNO | MB_ICONINFORMATION) != IDYES)return;
- m_List1.DeleteAllItems();
- CalculateCost();
- }
- void Booking::CalculateCost()
- {
- m_cost1 = 0;
- CString str;
- for (int i = 0; i < m_List1.GetItemCount(); i++)
- {
- m_cost1 += GetSPPriceFromId(m_List1.GetItemText(i, 0))*atof(m_List1.GetItemText(i, 3));
- }
- float cost2 = 0;
- for (i = 0; i < m_List1.GetItemCount(); i++)
- {
- cost2 += GetSPPriceFromId3(m_List1.GetItemText(i, 0))*atof(m_List1.GetItemText(i, 3));
- }
- str.Format("套系包含商品,成本:%0.1f,售价:%0.1f", m_cost1, cost2);
- str.Format("套系包含商品,总价:%0.1f", cost2);
- ::ConvertToPrice(str);
- SetDlgItemText(IDC_STATIC2, str);
- }
- void Booking::CalculateCost2()
- {
- m_cost2 = 0;
- CString str;
- for (int i = 0; i < m_List3.GetItemCount(); i++)
- {
- m_cost2 += GetSPPriceFromId(m_List3.GetItemText(i, 0))*atof(m_List3.GetItemText(i, 3));
- }
- float cost2 = 0;
- for (i = 0; i < m_List3.GetItemCount(); i++)
- {
- cost2 += GetSPPriceFromId3(m_List3.GetItemText(i, 0))*atof(m_List3.GetItemText(i, 3));
- }
- #ifndef CHILD_VERSION
- str.Format ("婚庆服务,成本:%0.1f,售价:%0.1f", m_cost2,cost2);
- #else
- str.Format("增加产品,成本:%0.1f,售价:%0.1f", m_cost2, cost2);
- #endif
- #ifndef CHILD_VERSION
- str.Format ("婚庆服务,总价:%0.1f",cost2);
- #else
- str.Format("增加产品,总价:%0.1f", cost2);
- #endif
- ::ConvertToPrice(str);
- SetDlgItemText(IDC_STATIC4, str);
- }
- void Booking::SaveCard2Data()
- {
- if (m_type == 1)
- {
- CString m_point;
- m_point.Format("%d", atol(m_money1) / 100);
- m_point.Format("%d", atol(m_point) * 100);
- CString m_card2no = m_memberno2;
- CString date2 = m_memberno2date;
- CString m_name = m_membernoname;
- CString m_sex = m_membernosex;
- CString m_phone = m_membernophone;
- CString sql;
- sql = "delete from membercard2 where [card2no]='" + m_card2no + "'";
- sql += "@@@insert into [memberreg]([memberno],[dindanid],[money],[date],[card2no],[type],[taoxi],[date2])values('" + m_memberno + "','" + m_sid + "','" + m_point + "','" + g_date + "','" + m_card2no + "','转介绍','" + taoxiname + "','" + date2 + "')";
- sql += "@@@";
- m_point.Format("%d", atol(m_point) / 100);
- if (atoi(g_cominfoarray.ElementAt(0).ElementAt(51))) // msgcheck5
- {
- CString m_content5 = g_cominfoarray.ElementAt(0).ElementAt(52);
- CString content, timestamp;
- CString name;
- if (!m_name1.IsEmpty())
- name = m_name1 + ",";
- name += m_name2;
- name.TrimRight(",");
- CString name2 = m_name;
- #ifndef CHILD_VERSION
- if(m_sex=="男")
- name2+="先生";
- else if(m_sex=="女")
- name2+="女士";
- #endif
- content.Format("%s您好,您的朋友%s为您积分%s分.", name2, name, m_point);
- content += m_content5;
- timestamp = CTime::GetCurrentTime().Format("%Y%m%d%H%M%S");
- if (CheckPhoneType(m_phone) != -1 && CheckBadWords(content, 0))
- {
- int count = GetLengthEx(content) / MSG_LENGTH;
- if (GetLengthEx(content) % MSG_LENGTH)
- count++;
- CString scount;
- scount.Format("%d", count);
- #if JEFF_TEST_ON
- CString sql2 = _T("");
- sql2.Format(INSERT_SENDREG, _T("5"), m_phone, content, timestamp, scount, _T("0"), _T("0"), _T("0"), _T("系统自动发送"));
- sql += sql2;
- #else
- CString sql2 = "insert into [sendreg]([phones],[content],[timestamp],[msgcount],[status],[issended],[isautosend],[ren]) values('" + m_phone + "','" + content + "','" + timestamp + "','" + scount + "','0','0','0','系统自动发送')";
- sql += sql2;
- #endif
- sql += "@@@";
- }
- }
- sql += m_memberno;
- g_sendhead.bsql = 1;
- g_pMainWnd->ProcessChatMessageRequest2(sql); if (g_bSendOK == 0)return;
- }
- else if (m_type == 3)
- {
- CString m_rate;
- CString filter = "[memberno]='" + m_memberno + "'";
- g_sendhead.bsql = 0;
- g_sendhead.code[0] = 132;
- g_sendhead.tabcount = 1;
- g_pMainWnd->ProcessChatMessageRequest2(filter); if (g_bSendOK == 0)return;
- DataToArray(&g_List1array);
- if (g_List1array.GetSize() % 5 == 0)
- m_rate = "5%";
- else if (g_List1array.GetSize() % 5 == 1)
- m_rate = "10%";
- else if (g_List1array.GetSize() % 5 == 2)
- m_rate = "15%";
- else if (g_List1array.GetSize() % 5 == 3)
- m_rate = "20%";
- else if (g_List1array.GetSize() % 5 == 4)
- m_rate = "50%";
- float frate = atof(m_rate) / 100.0;
- CString m_point;
- m_point.Format("%d", (int)(min(atof(m_money1), atof(m_membernojiage))*frate));
- CString m_card2no = m_memberno2;
- CString date2 = m_memberno2date;
- CString m_name = m_membernoname;
- CString m_sex = m_membernosex;
- CString m_phone = m_membernophone;
- CString sql;
- sql = "delete from [membercard2blue] where [card2no]='" + m_card2no + "'";
- sql += "~~~insert into [memberregblue]([memberno],[dindanid],[money],[date],[card2no],[type],[taoxi],[date2])values('" + m_memberno + "','" + m_sid + "','" + m_point + "','" + g_date + "','" + m_card2no + "','转介绍','" + taoxiname + "','" + date2 + "')";
- sql += "~~~";
- if (atoi(g_cominfoarray.ElementAt(0).ElementAt(51)))
- {
- CString m_content5 = g_cominfoarray.ElementAt(0).ElementAt(52);
- CString content, timestamp;
- CString name;
- if (!m_name1.IsEmpty())
- name = m_name1 + ",";
- name += m_name2;
- name.TrimRight(",");
- CString name2 = m_name;
- #ifndef CHILD_VERSION
- if(m_sex=="男")
- name2+="先生";
- else if(m_sex=="女")
- name2+="女士";
- #endif
- content.Format("%s您好,您的朋友%s为您返现金%s元.", name2, name, m_point);
- content += m_content5;
- timestamp = CTime::GetCurrentTime().Format("%Y%m%d%H%M%S");
- if (CheckPhoneType(m_phone) != -1 && CheckBadWords(content, 0))
- {
- int count = GetLengthEx(content) / MSG_LENGTH;
- if (GetLengthEx(content) % MSG_LENGTH)
- count++;
- CString scount;
- scount.Format("%d", count);
- #if JEFF_TEST_ON
- CString sql2 = _T("");
- sql2.Format(INSERT_SENDREG, _T("5"), m_phone, content, timestamp, scount, _T("0"), _T("0"), _T("0"), _T("系统自动发送"));
- sql += sql2;
- #else
- CString sql2 = "insert into [sendreg]([phones],[content],[timestamp],[msgcount],[status],[issended],[isautosend],[ren]) values('" + m_phone + "','" + content + "','" + timestamp + "','" + scount + "','0','0','0','系统自动发送')";
- sql += sql2;
- #endif
- sql += "~~~";
- }
- }
- sql += m_memberno;
- g_sendhead.bsql = 1;
- g_pMainWnd->ProcessChatMessageRequest2(sql); if (g_bSendOK == 0)return;
- }
- }
- void Booking::OnBUTaddjd()
- {
- // TODO: Add your control notification handler code here
- SPLBDlg dlg;
- dlg.m_mode = 2;
- if (dlg.DoModal() == IDOK)
- {
- for (int i = 0; i < dlg.m_array.GetSize(); i++)
- m_listbox1.AddString(dlg.m_array.ElementAt(i));
- }
- }
- void Booking::OnBUTdeljd()
- {
- // TODO: Add your control notification handler code here
- int pos = m_listbox1.GetCurSel();
- if (pos == -1)
- {
- AfxMessageBox("请选中您要删除的景点!", MB_ICONINFORMATION); return;
- }
- m_listbox1.DeleteString(pos);
- int count = m_listbox1.GetCount();
- if (pos < count)
- m_listbox1.SetCurSel(pos);
- else if (count && pos == count)
- m_listbox1.SetCurSel(0);
- }
- void Booking::OnBUTinfo1() // 客人资料按钮;
- {
- // TODO: Add your control notification handler code here
- CRect rc;
- GetDlgItem(IDC_STATIC5)->GetWindowRect(rc);
- ScreenToClient(rc);
- m_page1.Create(IDD_DLGBookingPage1, this);
- m_page1.MoveWindow(rc);
- m_page1.ShowWindow(SW_SHOW);
- }
- void Booking::OnBUTinfo2()
- {
- // TODO: Add your control notification handler code here
- }
- void Booking::OnBUTinfo3()
- {
- // TODO: Add your control notification handler code here
- }
|