Mercurial > lada > lada-client
changeset 137:a7eea094d3d6
Removed id property from Zusatzwerte model. Do not set Probenzusatz when
saving the Zusatzwert.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Wed, 26 Jun 2013 10:23:55 +0200 |
parents | 4dc84682110d |
children | 4287f29b5b81 |
files | app/controller/Zusatzwerte.js app/model/Zusatzwert.js |
diffstat | 2 files changed, 1 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/app/controller/Zusatzwerte.js Wed Jun 26 10:18:08 2013 +0200 +++ b/app/controller/Zusatzwerte.js Wed Jun 26 10:23:55 2013 +0200 @@ -37,12 +37,6 @@ saveZusatzwert: function(button) { console.log('Saving Zusatzwert'); var form = button.up('window').down('form'); - var values = form.getForm().getValues(); - var model = form.model; - // Set Probenzusatzwert and rebind the model to the form. - var xxx = this.getProbenzusatzwerteStore(); - var probenzusatz = xxx.getAt(xxx.find('pzsId', values.pzsId)); - model.setProbenzusatz(probenzusatz); form.commit(); }, addZusatzwert: function(button) {
--- a/app/model/Zusatzwert.js Wed Jun 26 10:18:08 2013 +0200 +++ b/app/model/Zusatzwert.js Wed Jun 26 10:23:55 2013 +0200 @@ -1,7 +1,6 @@ Ext.define('Lada.model.Zusatzwert', { extend: 'Ext.data.Model', fields: [ - {name: "id"}, {name: "pzsId", mapping: "id.pzsId"}, {name: "probeId", mapping: "id.probeId"}, {name: "nwgZuMesswert", type: 'float'}, @@ -9,7 +8,7 @@ {name: "messfehler", type: 'float'}, {name: "letzteAenderung", type: 'date', convert: ts2date, defaultValue: new Date()} ], - idProperty: "id", + idProperty: "pzsId", proxy: { type: 'rest', appendId: true, //default