This commit is contained in:
@@ -3,10 +3,6 @@
|
|||||||
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||||
|
|
||||||
|
|
||||||
todo: is notifynewcount request double sending? It seems like it appears twice at the same moment in the log
|
|
||||||
todo: widget usertype not set on new record error says "invalid value [2203]" shouldn't it say it's required instead?
|
|
||||||
|
|
||||||
|
|
||||||
todo: user form
|
todo: user form
|
||||||
create user but just type name, try to save, get mysterious object did not pass validation but it doesn't show the actual error which is customertype not set?!
|
create user but just type name, try to save, get mysterious object did not pass validation but it doesn't show the actual error which is customertype not set?!
|
||||||
todo: Joyce issue report:
|
todo: Joyce issue report:
|
||||||
|
|||||||
@@ -330,13 +330,14 @@ export default {
|
|||||||
obj: {
|
obj: {
|
||||||
//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
|
//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
|
//I.E. Serial, usertype fields
|
||||||
|
//Also, if it's a non-nullable Enum backed field then it should have a valid selection i.e. not zero if there is no zero
|
||||||
id: 0,
|
id: 0,
|
||||||
concurrency: 0,
|
concurrency: 0,
|
||||||
name: null,
|
name: null,
|
||||||
serial: 0,
|
serial: 0,
|
||||||
dollarAmount: null,
|
dollarAmount: null,
|
||||||
active: null,
|
active: null,
|
||||||
userType: 0,
|
userType: 2, //defaulted here to something valid
|
||||||
startDate: null,
|
startDate: null,
|
||||||
endDate: null,
|
endDate: null,
|
||||||
notes: null,
|
notes: null,
|
||||||
|
|||||||
Reference in New Issue
Block a user