refs #5925 models table docuware #1889
|
@ -56,6 +56,16 @@ module.exports = Self => {
|
||||||
}]
|
}]
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// get tablet
|
||||||
|
const tablet = await models.userConfig.findById(id, {
|
||||||
|
include: [{
|
||||||
|
relation: 'Tablet',
|
||||||
|
scope: {
|
||||||
|
fields: ['id']
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
});
|
||||||
|
|
||||||
// upload file
|
// upload file
|
||||||
const templateJson = {
|
const templateJson = {
|
||||||
'Fields': [
|
'Fields': [
|
||||||
|
@ -102,12 +112,7 @@ module.exports = Self => {
|
||||||
{
|
{
|
||||||
'FieldName': 'FILTRO_TABLET',
|
'FieldName': 'FILTRO_TABLET',
|
||||||
'ItemElementName': 'string',
|
'ItemElementName': 'string',
|
||||||
'Item': 'Tablet1',
|
'Item': tablet.id,
|
||||||
},
|
|
||||||
{
|
|
||||||
'FieldName': 'ID_TABLET',
|
|
||||||
'ItemElementName': 'integer',
|
|
||||||
'Item': userConfig.tabletFk,
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"base": "VnModel",
|
"base": "VnModel",
|
||||||
"options": {
|
"options": {
|
||||||
"mysql": {
|
"mysql": {
|
||||||
"table": "vn.docuwareTablet"
|
"table": "docuwareTablet"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"properties": {
|
"properties": {
|
||||||
|
|
Loading…
Reference in New Issue