#ifndef __KERNEL_CALLBACK_20151127__ #define __KERNEL_CALLBACK_20151127__ #include "stdafx.h" ////////////////////////////////////////////////////////////////////////// // 回调函数定义; // 导入相片结束后的回调函数; // 参数: // lpStrBranchId 域名; // lpStrOrderNum 订单号; // dwImgType 相片类型:原片、初修、精修、设计; // dwImgNum 相片编号(自动命名) // lpStrImgs 导入的相片的编号串, 以"|"分隔(只是文件名,如"001|002|003"),该参数同时还能用于记录用户导入的相片编号; // lpStrImgExt 导入的相片的后缀(用于IncrementalBackup后期升级使用,备份时只备份导入的后续,其他后缀不备份); ////////////////////////////////////////////////////////////////////////// // 合并所有相片类型的回调函数; typedef void (CALLBACK *IMGImportMergeCallback)(IN LPCTSTR lpStrBranchId, IN LPCTSTR lpStrOrderNum, IN CONST INT& dwImgType, IN CONST DWORD& dwImgNum, IN LPCTSTR lpStrImgs, IN LPCTSTR lpStrImgExt ); // 导入原片、初修、精修、设计结束后的回调函数(三合一); void CALLBACK IMGImportMergeCallback(IN LPCTSTR lpStrBranchId, IN LPCTSTR lpStrOrderNum, IN CONST INT& dwImgType, IN CONST DWORD& dwImgNum, IN LPCTSTR lpStrImgs, IN LPCTSTR lpStrImgExt) { AfxSetResourceHandle(g_Instance); // 1.判断参数有效性; if (lpStrBranchId == NULL || !strstr(lpStrBranchId, _T(".ly.com")) || lpStrOrderNum == NULL) { OutputDebugString(_T("回调函数参数(域名、订单号)无效\n")); return; } // 2.是否需要备份分店相片; BOOL bIsNeedBranchImg = FALSE; switch (dwImgType) { case 1://是否备份分店原片; bIsNeedBranchImg = g_ThisShopVersion.bUpLoadCheck1; break; case 2://是否备份分店修片; bIsNeedBranchImg = g_ThisShopVersion.bUpLoadCheck2; break; case 3://是否备份分店精修; bIsNeedBranchImg = g_ThisShopVersion.bUpLoadCheck3; break; case 4://是否备份分店设计; bIsNeedBranchImg = g_ThisShopVersion.bUpLoadCheck4; break; default: OutputDebugString(_T("未知相片类型!\n")); break; } // 3.同时更新IncrementalBack表; CString strSQLInsert = _T(""); strSQLInsert.Format(INSERT_INCREMENT, 0, lpStrBranchId, CTime::GetCurrentTime().Format("%Y-%m-%d %H:%M:%S"), lpStrOrder, EImgType, lpStrImg, g_user.account, g_user.name); // 4.连接服务器,更新dindan和IncrementalBackup; g_sendhead.bsql = 1; if (g_bAllBranch) {// 多店汇总时; g_branchip = GetBranchIPbyId(lpStrBranchId); g_pMainWnd->OnDisconnect(); g_branchname = GetBranchNamebyId(lpStrBranchId); g_bBranchModify = 1; if (dwImgType == OImgtype) {// 如果导入的是原片; CString strSQL = _T(""); strSQL.Format(_T("update dindan set curno = '%d' where id = '%s' ***%s"), dwImgNum, lpStrOrder, strSQLInsert); g_pMainWnd->ProcessChatMessageRequest2(strSQL); } else {//导入的不是原片; g_pMainWnd->ProcessChatMessageRequest2(strSQLInsert); } g_pMainWnd->OnDisconnect(); g_bBranchModify = 0; g_branchip = g_branchname = _T(""); if (g_domain.CompareNoCase(lpStrBranchId) != 0 && bIsNeedBranchImg) {// 如果不是本店,且本店设置中需要备份分店相片,需要向本店添加导入相片记录; g_sendhead.bsql = 1; g_pMainWnd->ProcessChatMessageRequest2(strSQLInsert); g_pMainWnd->OnDisconnect(); g_bBranchModify = 0; } } else {// 连接本店或分店时; if (dwImgType == OImgtype) {// 如果导入的是原片; CString strSQL = _T(""); strSQL.Format(_T("update dindan set curno = '%d' where id = '%s' ***%s"), dwImgNum, lpStrOrder, strSQLInsert); g_pMainWnd->ProcessChatMessageRequest2(strSQL); } else {//导入的不是原片; g_pMainWnd->ProcessChatMessageRequest2(strSQLInsert); } if (g_domain.CompareNoCase(lpStrBranchId) != 0 && bIsNeedBranchImg) {// 如果不是本店,且本店设置中需要备份分店相片,需要向本店添加导入相片记录; #if 1 ::SendMessage(g_pMainWnd->m_hWnd, MSG_KERNEL_SENDMSG, (WPARAM)lpStrBranchId, (LPARAM)&strSQLInsert); #else // 可能是VC6.0与VC9.0间DLL调用产生的问题,下面代码执行时会出错; // 如果连接的是分店,断开分店,回连本店; g_bBranchModify = FALSE; g_pMainWnd->OnDisconnect(); g_branchname = g_branchip = _T(""); g_sendhead.bsql = 1; g_pMainWnd->ProcessChatMessageRequest2(strSQLInsert); g_pMainWnd->OnDisconnect(); // 设置回分店连接; g_branchip = GetBranchIPbyId(lpStrBranchId); g_branchname = GetBranchNamebyId(lpStrBranchId); g_bBranchModify = TRUE; #endif } } if ( dwImgType == OImgtype ) {// 最后一步,更新完了数据库,刷新TakFrom类所对应的对话框; HWND hWnd = ::FindWindowEx(g_pMainWnd->GetSafeHwnd(), NULL, _T("MDIClient"), NULL); if (hWnd) { hWnd = ::FindWindowEx(hWnd, NULL, NULL, _T("拍照")); if (hWnd) { hWnd = ::FindWindowEx(hWnd, NULL, _T("#32770"), NULL); if (hWnd) { ::SendMessage(hWnd, MSG_KERNEL_CALLBACK, 0, 0); } } } } } #endif //__KERNEL_CALLBACK_20151127__