VXml VXML_AddRetencion VXml
Agrega una retencion de impuestos al comprobante

Namespace: VXml®
Assembly: VXML_Doc (in VXML_Doc.exe) Version: 1.0.0.0 (1.0.0.0)
Sintáxis

public static void VXML_AddRetencion(
	int hXml,
	string impuesto,
	string importe
)
Examples

private void GeneraDocto(String version)
{
    // Creamos un comprobante 
    int hXml = VXML_New(version);

    // Llenado del documento 

    // Datos del emisor 

    // Datos del receptor 

    // Conceptos 

    // Impuestos
    VXML_SetImpuestosInfo( hXml, "1160.00", "" );

    VXML_AddRetencion( hXml, "IVA", "100" );

    // Procesamiento del documento 
    // .... 

    // Lectura de resultados 
    // .... 

    // Liberacion de memoria
    VXML_Free(hXml);
}
Veáse También