kernelCallback.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. #ifndef __KERNEL_CALLBACK_20151127__
  2. #define __KERNEL_CALLBACK_20151127__
  3. #include "stdafx.h"
  4. //////////////////////////////////////////////////////////////////////////
  5. // 回调函数定义;
  6. // 导入相片结束后的回调函数;
  7. // 参数:
  8. // lpStrBranchId 域名;
  9. // lpStrOrderNum 订单号;
  10. // dwImgType 相片类型:原片、初修、精修、设计;
  11. // dwImgNum 相片编号(自动命名)
  12. // lpStrImgs 导入的相片的编号串, 以"|"分隔(只是文件名,如"001|002|003"),该参数同时还能用于记录用户导入的相片编号;
  13. // lpStrImgExt 导入的相片的后缀(用于IncrementalBackup后期升级使用,备份时只备份导入的后续,其他后缀不备份);
  14. //////////////////////////////////////////////////////////////////////////
  15. // 合并所有相片类型的回调函数;
  16. typedef void (CALLBACK *IMGImportMergeCallback)(IN LPCTSTR lpStrBranchId, IN LPCTSTR lpStrOrderNum, IN CONST INT& dwImgType, IN CONST DWORD& dwImgNum, IN LPCTSTR lpStrImgs, IN LPCTSTR lpStrImgExt );
  17. // 导入原片、初修、精修、设计结束后的回调函数(三合一);
  18. void CALLBACK IMGImportMergeCallback(IN LPCTSTR lpStrBranchId, IN LPCTSTR lpStrOrderNum, IN CONST INT& dwImgType, IN CONST DWORD& dwImgNum, IN LPCTSTR lpStrImgs, IN LPCTSTR lpStrImgExt)
  19. {
  20. AfxSetResourceHandle(g_Instance);
  21. // 1.判断参数有效性;
  22. if (lpStrBranchId == NULL || !strstr(lpStrBranchId, _T(".ly.com")) || lpStrOrderNum == NULL)
  23. {
  24. OutputDebugString(_T("回调函数参数(域名、订单号)无效\n"));
  25. return;
  26. }
  27. // 2.是否需要备份分店相片;
  28. BOOL bIsNeedBranchImg = FALSE;
  29. switch (dwImgType)
  30. {
  31. case 1://是否备份分店原片;
  32. bIsNeedBranchImg = g_ThisShopVersion.bUpLoadCheck1;
  33. break;
  34. case 2://是否备份分店修片;
  35. bIsNeedBranchImg = g_ThisShopVersion.bUpLoadCheck2;
  36. break;
  37. case 3://是否备份分店精修;
  38. bIsNeedBranchImg = g_ThisShopVersion.bUpLoadCheck3;
  39. break;
  40. case 4://是否备份分店设计;
  41. bIsNeedBranchImg = g_ThisShopVersion.bUpLoadCheck4;
  42. break;
  43. default:
  44. OutputDebugString(_T("未知相片类型!\n"));
  45. break;
  46. }
  47. // 3.同时更新IncrementalBack表;
  48. CString strSQLInsert = _T("");
  49. strSQLInsert.Format(INSERT_INCREMENT, 0, lpStrBranchId, CTime::GetCurrentTime().Format("%Y-%m-%d %H:%M:%S"), lpStrOrder, EImgType, lpStrImg, g_user.account, g_user.name);
  50. // 4.连接服务器,更新dindan和IncrementalBackup;
  51. g_sendhead.bsql = 1;
  52. if (g_bAllBranch)
  53. {// 多店汇总时;
  54. g_branchip = GetBranchIPbyId(lpStrBranchId);
  55. g_pMainWnd->OnDisconnect();
  56. g_branchname = GetBranchNamebyId(lpStrBranchId);
  57. g_bBranchModify = 1;
  58. if (dwImgType == OImgtype)
  59. {// 如果导入的是原片;
  60. CString strSQL = _T("");
  61. strSQL.Format(_T("update dindan set curno = '%d' where id = '%s' ***%s"), dwImgNum, lpStrOrder, strSQLInsert);
  62. g_pMainWnd->ProcessChatMessageRequest2(strSQL);
  63. }
  64. else
  65. {//导入的不是原片;
  66. g_pMainWnd->ProcessChatMessageRequest2(strSQLInsert);
  67. }
  68. g_pMainWnd->OnDisconnect();
  69. g_bBranchModify = 0;
  70. g_branchip = g_branchname = _T("");
  71. if (g_domain.CompareNoCase(lpStrBranchId) != 0 && bIsNeedBranchImg)
  72. {// 如果不是本店,且本店设置中需要备份分店相片,需要向本店添加导入相片记录;
  73. g_sendhead.bsql = 1;
  74. g_pMainWnd->ProcessChatMessageRequest2(strSQLInsert);
  75. g_pMainWnd->OnDisconnect();
  76. g_bBranchModify = 0;
  77. }
  78. }
  79. else
  80. {// 连接本店或分店时;
  81. if (dwImgType == OImgtype)
  82. {// 如果导入的是原片;
  83. CString strSQL = _T("");
  84. strSQL.Format(_T("update dindan set curno = '%d' where id = '%s' ***%s"), dwImgNum, lpStrOrder, strSQLInsert);
  85. g_pMainWnd->ProcessChatMessageRequest2(strSQL);
  86. }
  87. else
  88. {//导入的不是原片;
  89. g_pMainWnd->ProcessChatMessageRequest2(strSQLInsert);
  90. }
  91. if (g_domain.CompareNoCase(lpStrBranchId) != 0 && bIsNeedBranchImg)
  92. {// 如果不是本店,且本店设置中需要备份分店相片,需要向本店添加导入相片记录;
  93. #if 1
  94. ::SendMessage(g_pMainWnd->m_hWnd, MSG_KERNEL_SENDMSG, (WPARAM)lpStrBranchId, (LPARAM)&strSQLInsert);
  95. #else // 可能是VC6.0与VC9.0间DLL调用产生的问题,下面代码执行时会出错;
  96. // 如果连接的是分店,断开分店,回连本店;
  97. g_bBranchModify = FALSE;
  98. g_pMainWnd->OnDisconnect();
  99. g_branchname = g_branchip = _T("");
  100. g_sendhead.bsql = 1;
  101. g_pMainWnd->ProcessChatMessageRequest2(strSQLInsert);
  102. g_pMainWnd->OnDisconnect();
  103. // 设置回分店连接;
  104. g_branchip = GetBranchIPbyId(lpStrBranchId);
  105. g_branchname = GetBranchNamebyId(lpStrBranchId);
  106. g_bBranchModify = TRUE;
  107. #endif
  108. }
  109. }
  110. if ( dwImgType == OImgtype )
  111. {// 最后一步,更新完了数据库,刷新TakFrom类所对应的对话框;
  112. HWND hWnd = ::FindWindowEx(g_pMainWnd->GetSafeHwnd(), NULL, _T("MDIClient"), NULL);
  113. if (hWnd)
  114. {
  115. hWnd = ::FindWindowEx(hWnd, NULL, NULL, _T("拍照"));
  116. if (hWnd)
  117. {
  118. hWnd = ::FindWindowEx(hWnd, NULL, _T("#32770"), NULL);
  119. if (hWnd)
  120. {
  121. ::SendMessage(hWnd, MSG_KERNEL_CALLBACK, 0, 0);
  122. }
  123. }
  124. }
  125. }
  126. }
  127. #endif //__KERNEL_CALLBACK_20151127__