Skip to content

Commit

Permalink
ajusto error de tipeo en ejemplos MTX (variable no usada internamente)
Browse files Browse the repository at this point in the history
  • Loading branch information
reingart committed May 30, 2014
1 parent 8b8a5fc commit f295232
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ejemplos/wsmtxca/wsmtx.bas
Expand Up @@ -105,7 +105,7 @@ Sub Main()

' Agrego subtotales de IVA
id = 5 ' 21%
base_im = "100.00"
base_imp = "100.00"
importe = "21.00"
ok = WSMTXCA.AgregarIva(id, base_imp, importe)

Expand Down
4 changes: 2 additions & 2 deletions ejemplos/wsmtxca/wsmtxca.prg
Expand Up @@ -115,7 +115,7 @@ ok = WSMTXCA.AgregarTributo(id, Desc, base_imp, alic, importe)
*-- Agrego subtotales de IVA
*-- 21%
id = 5
base_im = "100.00"
base_imp = "100.00"
importe = "21.00"
ok = WSMTXCA.AgregarIva(id, base_imp, importe)

Expand Down Expand Up @@ -226,4 +226,4 @@ PROCEDURE errhand2
CLEAR ALL
CANCEL
ENDIF
ENDPROC
ENDPROC
2 changes: 1 addition & 1 deletion wsmtx.py
Expand Up @@ -954,7 +954,7 @@ def main():
wsmtxca.AgregarTributo(tributo_id, desc, base_imp, alic, importe)

iva_id = 5 # 21%
base_im = 100
base_imp = 100
importe = 21
wsmtxca.AgregarIva(iva_id, base_imp, importe)

Expand Down

0 comments on commit f295232

Please sign in to comment.