ignore computed fields

This commit is contained in:
mdipierro
2017-12-04 23:45:03 -06:00
parent 4f51647b2f
commit 4697e0e45b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1840,7 +1840,7 @@ class SQLFORM(FORM):
continue
field = self.table[fieldname]
if field.type == 'id':
if field.type == 'id' or field.compute:
continue
if field.type == 'boolean':
if self.vars.get(fieldname, False):