fix: adjustment item calculate quantity.

This commit is contained in:
a.bouhuolia
2021-01-17 20:29:34 +02:00
parent 79f9190de3
commit 10ab8f4711
7 changed files with 129 additions and 72 deletions

View File

@@ -388,3 +388,8 @@ export const getColumnWidth = (
return result;
};
export const toSafeNumber = (number) => {
return _.toNumber(_.defaultTo(number, 0));
}