问题: - 导入成功条数显示为负数 - 原因:成功数量计算使用 validRecords.size() - failures.size() - 但没有使用实际的数据库操作返回值 修复: - saveBatchWithUpsert 和 saveBatch 方法现在返回 int - 累加实际的数据库影响行数 - 使用 actualSuccessCount 变量跟踪真实成功数量 影响范围: - CcdiIntermediaryPersonImportServiceImpl - CcdiIntermediaryEntityImportServiceImpl
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"name": "crc-32",
|
|
"version": "1.2.2",
|
|
"author": "sheetjs",
|
|
"description": "Pure-JS CRC-32",
|
|
"keywords": [ "crc", "crc32", "checksum" ],
|
|
"bin": {
|
|
"crc32": "bin/crc32.njs"
|
|
},
|
|
"main": "crc32.js",
|
|
"types": "types/index.d.ts",
|
|
"typesVersions": { "*": { "*": ["types/index.d.ts" ] } },
|
|
"dependencies": {
|
|
},
|
|
"devDependencies": {
|
|
"printj": "~1.3.1",
|
|
"exit-on-epipe": "~1.0.1",
|
|
"mocha": "~2.5.3",
|
|
"blanket": "~1.2.3",
|
|
"codepage": "~1.10.0",
|
|
"@sheetjs/uglify-js": "~2.7.3",
|
|
"@types/node": "^8.0.7",
|
|
"dtslint": "^0.1.2",
|
|
"typescript": "2.2.0"
|
|
},
|
|
"repository": { "type": "git", "url": "git://github.com/SheetJS/js-crc32.git" },
|
|
"scripts": {
|
|
"test": "make test",
|
|
"build": "make",
|
|
"lint": "make fullint",
|
|
"dtslint": "dtslint types"
|
|
},
|
|
"config": {
|
|
"blanket": {
|
|
"pattern": "crc32.js"
|
|
}
|
|
},
|
|
"homepage": "https://sheetjs.com/",
|
|
"files": ["crc32.js", "crc32c.js", "bin/crc32.njs", "LICENSE", "README.md", "types/index.d.ts", "types/*.json"],
|
|
"bugs": { "url": "https://github.com/SheetJS/js-crc32/issues" },
|
|
"license": "Apache-2.0",
|
|
"engines": { "node": ">=0.8" }
|
|
}
|