[Lada-commits] [PATCH 3 of 3] Fixed tree_modified check in orte edit

Wald Commits scm-commit at wald.intevation.org
Thu Apr 16 15:55:14 CEST 2015


# HG changeset patch
# User Raimund Renkert <raimund.renkert at intevation.de>
# Date 1429192563 -7200
# Node ID 6bc05ba2f6b18ae54b0212cc946ec5d10fdb8ba9
# Parent  83c571b022f3f38006b1a09e3e80c8a0deb08951
Fixed tree_modified check in orte edit.

diff -r 83c571b022f3 -r 6bc05ba2f6b1 app/view/window/OrtEdit.js
--- a/app/view/window/OrtEdit.js	Thu Apr 16 15:55:32 2015 +0200
+++ b/app/view/window/OrtEdit.js	Thu Apr 16 15:56:03 2015 +0200
@@ -106,7 +106,7 @@
             },
             success: function(record, response) {
                 var me = this;
-                if (this.probe.get('treeModified') < record.get('treeModified')) {
+                if (record.get('treeModified') < record.get('parentModified')) {
                     Ext.Msg.show({
                         title: 'Probe nicht aktuell!',
                         msg: 'Die zugehörige Probe wurde verändert.\nMöchten Sie zu der Probe zurückkehren und neu laden?\nOhne das erneute Laden der Probe wird das Speichern des Ortes nicht möglich sein.',


More information about the Lada-commits mailing list