Merge branch 'develop' into ccb
This commit is contained in:
commit
9b61443b2f
@ -144,8 +144,8 @@ export class TransferService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ライセンスのデータの作成を行う
|
// ライセンスのデータの作成を行う
|
||||||
// line.expired_dateが"9999/12/31 23:59:59"のデータの場合はデモライセンスなので登録しない
|
// line.expired_dateが"9999/12/31"で始まるデータの場合はデモライセンスなので登録しない
|
||||||
if (line.expired_date !== "9999/12/31 23:59:59") {
|
if (!line.expired_date.startsWith("9999/12/31")) {
|
||||||
// authorIdが設定されてる場合、statusは"allocated"、allocated_user_idは対象のユーザID
|
// authorIdが設定されてる場合、statusは"allocated"、allocated_user_idは対象のユーザID
|
||||||
// されていない場合、statusは"reusable"、allocated_user_idはnull
|
// されていない場合、statusは"reusable"、allocated_user_idはnull
|
||||||
let status: string;
|
let status: string;
|
||||||
|
|||||||
@ -63,7 +63,7 @@ export class VerificationService {
|
|||||||
const licensesCountFromFile =
|
const licensesCountFromFile =
|
||||||
csvInputFiles.filter(
|
csvInputFiles.filter(
|
||||||
(item) =>
|
(item) =>
|
||||||
item.type === "USER" && item.expired_date !== "9999/12/31 23:59:59"
|
item.type === "USER" && !item.expired_date.startsWith("9999/12/31")
|
||||||
).length + cardLicensesCountFromFile;
|
).length + cardLicensesCountFromFile;
|
||||||
|
|
||||||
// 管理ユーザ数のカウント
|
// 管理ユーザ数のカウント
|
||||||
@ -105,7 +105,8 @@ export class VerificationService {
|
|||||||
// 重複する要素を抽出
|
// 重複する要素を抽出
|
||||||
const duplicates: { [key: string]: number } = {};
|
const duplicates: { [key: string]: number } = {};
|
||||||
mailAdresses.forEach((str) => {
|
mailAdresses.forEach((str) => {
|
||||||
duplicates[str] = (duplicates[str] || 0) + 1;
|
duplicates[str.toLowerCase()] =
|
||||||
|
(duplicates[str.toLowerCase()] || 0) + 1;
|
||||||
});
|
});
|
||||||
|
|
||||||
// 重複する要素と件数を表示
|
// 重複する要素と件数を表示
|
||||||
@ -166,7 +167,7 @@ export class VerificationService {
|
|||||||
VerificationResultDetails,
|
VerificationResultDetails,
|
||||||
csvInputFiles.filter(
|
csvInputFiles.filter(
|
||||||
(item) =>
|
(item) =>
|
||||||
item.type === "USER" && item.expired_date !== "9999/12/31 23:59:59"
|
item.type === "USER" && !item.expired_date.startsWith("9999/12/31")
|
||||||
),
|
),
|
||||||
licenses.filter((item) => item.expiry_date !== null),
|
licenses.filter((item) => item.expiry_date !== null),
|
||||||
accountsMappingInputFiles
|
accountsMappingInputFiles
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user