This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Obtener la versión de Linux | |
uname -mrs | |
//Obtener la ruta absoluta actual en consola | |
pwd | |
//Muestra el listado de contenido en el directorio actual | |
ls | |
//Para listado más detallado (long) | |
ls -l | |
//Para listado más detallado y ordenado por orden de creacion/modificación más reciente | |
ls -lt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void clicked() | |
{ | |
PurchTable purchTable; | |
PurchLine purchLine; | |
InventDim inventDim; | |
NumberSeq numberSeq; | |
//add by fanddy | |
AxPurchTable axPurchTable; | |
AxPurchLine axPurchLine; |