提交信息!

This commit is contained in:
Kane Wang 2021-03-18 11:13:31 +08:00
parent 8f63de9a42
commit 8d6b4b07d1
2 changed files with 7 additions and 3 deletions

View File

@ -87,6 +87,7 @@ const wchar_t * pwszRepairRecommandationCaption[] = {
//新送返修推荐报表
const unsigned int NEW_REPAIR_MONITOR_CAPTION_COUNT = 157;
const wchar_t * pwszNewRepairMonitorCaption[] = {
L"分公司名称",
L"部门组名称",
L"报案号",
@ -181,6 +182,7 @@ const wchar_t * pwszNewRepairMonitorCaption[] = {
L"核价修理厂名称",
L"估损单号",
L"核价通过时间",
L"月份",
L"定损员机构",
L"定损员代码",
L"定损员名称",
@ -801,9 +803,9 @@ void LoadRepairRecommandationFromXlsx( const std::wstring &
rowIndex++;
continue;
}
RepairRecommandationRecord record( branchName,
orderNo,
orderNo,
orderType,
notifyNo,
RecommandCarDealerCode,
@ -988,6 +990,7 @@ void LoadNewRepairMonitorReportFromXlsx( const std::wstring &
record._ = ReadCellStringFromXlsx( pBook, sheetIndex, rowIndex, colunmIndex++, true );
record._ = ReadCellStringFromXlsx( pBook, sheetIndex, rowIndex, colunmIndex++, true );
record._ = ReadCellStringFromXlsx( pBook, sheetIndex, rowIndex, colunmIndex++, true );
record._ = ReadCellStringFromXlsx( pBook, sheetIndex, rowIndex, colunmIndex++, true );
record._ = ReadCellStringFromXlsx( pBook, sheetIndex, rowIndex, colunmIndex++, true );
record._ = ReadCellStringFromXlsx( pBook, sheetIndex, rowIndex, colunmIndex++, true );
record._ = ReadCellStringFromXlsx( pBook, sheetIndex, rowIndex, colunmIndex++, true );

View File

@ -1,4 +1,4 @@

#pragma once
#include <string>
@ -99,6 +99,7 @@ typedef struct NewRepairMonitorReportRecord_
std::wstring _;
std::wstring _;
std::wstring _;
std::wstring _;
std::wstring _;
std::wstring _;
std::wstring _;