[solved] View history in payments - Printable Version +- CoreBOSBB (https://discussions.corebos.org) +-- Forum: Support (https://discussions.corebos.org/forumdisplay.php?fid=17) +--- Forum: Administrator Support (https://discussions.corebos.org/forumdisplay.php?fid=8) +--- Thread: [solved] View history in payments (/showthread.php?tid=1107) |
[solved] View history in payments - rslemer - 05-22-2018 In online demo payments module has option to list history of changes, but in my system not ... RE: View history in payments - rslemer - 05-22-2018 It is that module do that? User Audit Trail ========== RE: View history in payments - joebordes - 05-23-2018 I looked at the code and the instructions to install this related list are there, so you should have it. I suppose you deleted the relation in layout editor. This is not Audit Trail, this is a custom related list that gets filled with some special code to register these changes. You will have to create a vtlib script and add the related list manually. that would be someting like this: https://github.com/tsolucio/corebos/blob/master/build/HelperScripts/addActionLink.php but instead of addLink you would need to do something like this: https://github.com/tsolucio/corebos/blob/master/modules/CobroPago/CobroPago.php#L321 this is the Related List information: https://github.com/tsolucio/corebos/blob/master/modules/CobroPago/manifest.xml#L631 RE: View history in payments - rslemer - 05-23-2018 I look with more attention and see this link history, see in other modules too, like a accounts. How is activated? I means, my problem not only in payments module ... RE: View history in payments - joebordes - 05-24-2018 Are you talking about the History related list or the "View Changes" action link? If it is the related list, that is a hard-coded feature. if it is ModTracker you can activated that in module manager RE: View history in payments - rslemer - 05-24-2018 Ok, I don't know about that! I activated and works. Thanks! |