This commit is contained in:
2019-12-20 16:45:57 +08:00
parent 413c6c2f29
commit ae8f9ec881
12 changed files with 332 additions and 6 deletions

View File

@@ -1,5 +1,4 @@

#include <vector>
#include <vector>
#include <string>
#include "test.h"
#include "../data/DataManipulation/Excel/LoadFromExcel.h"
@@ -15,10 +14,13 @@ void test()
void excelTest()
{
vector<CarDealerScheme> schemeVector;
wstring filePath = L"D:/develop/projects_win/2019/car_dealer_util/数据/PC端导入模板管理员版.xlsx";
vector<CarDealerScheme> schemeVector;
vector<CarDealerAchievement> achievementsVector;
LoadCarDealerSchemeFromXlsx(filePath, 0, 1, schemeVector);
wstring filePath = L"D:/develop/projects_win/2019/car_dealer_util/数据/PC端导入模板客户经理版.xlsx";
//LoadCarDealerSchemeFromXlsx(filePath, 0, 1, schemeVector);
LoadCarDealerAchievementFromXlsx( filePath, 0, 1, achievementsVector );
return;
}
}