01. DATOS GENERALES
Producto | |
---|
Línea de producto: | |
---|
Segmento: | |
---|
Módulo: | SIGAFIN -Financiero |
---|
Función: | Rutina | Nombre |
---|
FINA847.prw | Ordenes de pago. | FINA850.PRW | Pago Modelo II. | FINRETARG | Cálculo de Retenciones Mod. II |
|
---|
País: | Argentina |
---|
Ticket: | 14167396 |
---|
Requisito/Story/Issue (informe el requisito vinculado): | DMICNS-14250 |
---|
02. SITUACIÓN/REQUISITO
Se requiere un punto de entrada en la rutina de orden de pago modelo II, para poder agregar más opciones al menú de la pantalla principal.
03. SOLUCIÓN
Se agrega el punto de entrada “FIN87OPMEN” para poder que permitirá agregar más opciones al menú de la pantalla principalen la orden de pago modelo II.
Totvs custom tabs box |
---|
tabs | Condiciones previas, Flujo de prueba |
---|
ids | paso1,paso2 |
---|
|
Totvs custom tabs box items |
---|
default | yes |
---|
referencia | paso1 |
---|
| Aplicar punto de entrada “FIN87OPMEN”.
Bloco de código |
---|
language | xml |
---|
theme | Emacs |
---|
title | FIN87OPMEN |
---|
linenumbers | true |
---|
| /*/{Protheus.doc} Punto de entrada FIN87OPMEN
Permite agregar mas opciones al menú principal de la fina847
@type User function
@author TYotvs
@since 17/06/2022
@return aMenu, arreglo, se envía el arreglo con nuevas opciones al menú
/*/
User Function FIN87OPMEN()
Local nC := 0
Local aMenu := {}
Local nTam := 0
If ValType(PARAMIXB) == "A"
nTam := Len(PARAMIXB)
For nC := 1 to nTam // se asignan los valores que ya trae por default el menú
aAdd(aMenu, aClone(PARAMIXB[nC]))
Next nC
aAdd( aMenu, {"Menú Nuevo","U_FPruebas()",0,7 } ) // Se agrega nueva opción
EndIf
Return aMenu //el arreglo devuelto en este PE es considerado en el fuente FINA847
/*/{Protheus.doc} FPruebas()
Función de prueba para incluir en el punto de entrada
@type User function
@author Totvs
@since 17/06/2022
@return nil
/*/
User Function FPruebas()
Alert("Totvs financiero")
return nil
|
|
Totvs custom tabs box items |
---|
| - Ingresar al módulo financiero y abrir el apartado orden de pago modelo II (SIGAFIN>> Actualizaciones| Proceso Mod II | Orden Pago Modelo II).
- Abrir el menú “Otras opciones”.
- Verificar que se agrego el nuevo menú.
- Verificar que se ejecute la función de usuario asignada al menú.
|
|
04. INFORMACIÓN ADICIONAL
05. ASUNTOS RELACIONADOS
...