Rename concurrencyToken to concurrency

This commit is contained in:
2020-05-13 19:55:50 +00:00
parent c9b5df20af
commit 6e41dad1b0
10 changed files with 26 additions and 26 deletions

View File

@@ -324,7 +324,7 @@ export default {
//IMPORTANT NOTE: Fields that are NON NULLABLE in the schema for the table but *are* hideable **MUST** have a default value set here or else there will be no way to save the record
//I.E. Serial, usertype fields
id: 0,
concurrencyToken: 0,
concurrency: 0,
name: null,
serial: 0,
dollarAmount: null,
@@ -491,7 +491,7 @@ export default {
);
} else {
//Handle "put" of an existing record (UPDATE)
vm.obj.concurrencyToken = res.data.concurrencyToken;
vm.obj.concurrency = res.data.concurrency;
window.$gz.form.setFormState({
vm: vm,
dirty: false