This commit is contained in:
@@ -34,6 +34,29 @@ export default {
|
||||
params: { recordid: tid.id }
|
||||
});
|
||||
break;
|
||||
case ayatype.FileAttachment:
|
||||
//lookup the actual type
|
||||
//then call this method again to do the actual open
|
||||
|
||||
(async () => {
|
||||
try {
|
||||
let res = await window.$gz.api.get("attachment/parent/" + tid.id);
|
||||
console.log("res is", res);
|
||||
if (res.error) {
|
||||
throw res.error;
|
||||
}
|
||||
if (res.data.id && res.data.id != 0) {
|
||||
this.handleOpenObjectClick(vm, res.data);
|
||||
return;
|
||||
}
|
||||
} catch (e) {
|
||||
throw e;
|
||||
}
|
||||
})();
|
||||
|
||||
//error here? or do nothing, doing nothing for now, should only apply if it's an orphan record and that is kind of obvious
|
||||
//or error "Can't open nothing"
|
||||
break;
|
||||
case ayatype.Translation:
|
||||
vm.$router.push({
|
||||
name: "adm-translation",
|
||||
|
||||
Reference in New Issue
Block a user