tuain-ng-forms-lib 17.2.11 → 17.2.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1901,6 +1901,9 @@ class RecordTable extends FormElement {
|
|
|
1901
1901
|
for (const tableRecord of tableRecords) {
|
|
1902
1902
|
const recordReceived = new TableRecordData(tableRecord, this._columns, this._selectionField);
|
|
1903
1903
|
const recordIdKey = recordReceived.recordIdKey;
|
|
1904
|
+
if (newRecordsObj[recordIdKey]) {
|
|
1905
|
+
continue;
|
|
1906
|
+
}
|
|
1904
1907
|
if (prepend) {
|
|
1905
1908
|
newRecords.unshift(recordReceived);
|
|
1906
1909
|
}
|
|
@@ -3647,10 +3650,9 @@ class BasicFormComponent extends FormStructureAndData {
|
|
|
3647
3650
|
}
|
|
3648
3651
|
if (this._actionsInProgress[code]) {
|
|
3649
3652
|
const { sent } = this._actionsInProgress[code];
|
|
3650
|
-
console.log(`
|
|
3653
|
+
console.log(`Reingreso sobre acción ${code} con ejecución previa ${sent}`);
|
|
3651
3654
|
return;
|
|
3652
3655
|
}
|
|
3653
|
-
console.log(`Acción ${code} arranca desde ${new Date()}`);
|
|
3654
3656
|
this._actionsInProgress[code] = { sent: new Date() };
|
|
3655
3657
|
this.resetError();
|
|
3656
3658
|
actionObject.start();
|