var logFile = space.childByNamePath("log_operaciones_ficheros_entrada.txt");
if (logFile == null)
logFile = space.createFile("log_operaciones_ficheros_entrada.txt");
//por ejemplo añadimos nombre del doc y fecha llegada
var fecha = new Date().toGMTString();
logFile.content+=document.name+" -> "+fecha+"\r\n";
Script 2 - El de salida (para cuando salgan documentos del espacio)var logFile = space.childByNamePath("log_operaciones_ficheros_salida.txt");
if (logFile == null)
logFile = space.createFile("log_operaciones_ficheros_salida.txt");
//por ejemplo añadimos nombre del doc y fecha salida
var fecha = new Date().toGMTString();
logFile.content+=document.name+" -> "+fecha+"\r\n";
2-Crear 2 reglas en los espacios que necesites :Content from pre 2016 and from language groups that have been closed.
Content is read-only.
By using this site, you are agreeing to allow us to collect and use cookies as outlined in Alfresco’s Cookie Statement and Terms of Use (and you have a legitimate interest in Alfresco and our products, authorizing us to contact you in such methods). If you are not ok with these terms, please do not use this website.