#4466 invoiceInCorrection #176

Merged
jorgep merged 22 commits from 4666-invoiceInCorrection into dev 2024-02-09 07:46:15 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit a4deaf4be9 - Show all commits

View File

@ -201,7 +201,6 @@ function getChanges() {
creates.push(row);
} else if (originalData.value) {
const data = getDifferences(originalData.value[i], row);
console.log(data);
if (!isEmpty(data)) {
updates.push({
data,
@ -211,6 +210,7 @@ function getChanges() {
}
}
const changes = { updates, creates };
for (let prop in changes) {
if (changes[prop].length === 0) changes[prop] = undefined;
}