tuain-ng-forms-lib 17.2.11 → 17.2.14
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,11 @@ 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
|
+
console.log(`recordIdKey: ${recordIdKey}`);
|
|
1905
|
+
if (newRecordsObj[recordIdKey]) {
|
|
1906
|
+
console.log(`repetido recordIdKey: ${recordIdKey}`);
|
|
1907
|
+
continue;
|
|
1908
|
+
}
|
|
1904
1909
|
if (prepend) {
|
|
1905
1910
|
newRecords.unshift(recordReceived);
|
|
1906
1911
|
}
|
|
@@ -3647,10 +3652,9 @@ class BasicFormComponent extends FormStructureAndData {
|
|
|
3647
3652
|
}
|
|
3648
3653
|
if (this._actionsInProgress[code]) {
|
|
3649
3654
|
const { sent } = this._actionsInProgress[code];
|
|
3650
|
-
console.log(`
|
|
3655
|
+
console.log(`Reingreso sobre acción ${code} con ejecución previa ${sent}`);
|
|
3651
3656
|
return;
|
|
3652
3657
|
}
|
|
3653
|
-
console.log(`Acción ${code} arranca desde ${new Date()}`);
|
|
3654
3658
|
this._actionsInProgress[code] = { sent: new Date() };
|
|
3655
3659
|
this.resetError();
|
|
3656
3660
|
actionObject.start();
|