Setup: Shared server Collective Access 2.09
Adding a new object record the object ID is initially showing the next value correctly (for instance 00053). After saving the object the id number is 00001 (which is a duplicate ID number) where it should be 00053.
My multipart_id_numbering.conf for objects is:
ca_objects = {
__default__ = {
separator = ,
elements = {
coll_num = {
type = LIST,
values = [_RU, SKU, KUN, UMC, T2O],
default = UMC,
width = 3,
description = Collectie code,
editable = 1,
},
item_num = {
type = SERIAL,
width = 5,
zeropad_to_length = 5,
description = Item number,
editable = 1,
table = ca_objects,
field = idno,
sort_field = idno_sort,
},
item_sub = {
type = FREE,
width = 8,
description = Item subnumber or letter,
editable = 1,
table = ca_objects,
field = idno,
sort_field = idno_sort,
},
},
},