CyberStore Ecommerce 2023 Documentation
ARSTPY

See the example of ARSTPY code below:

<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:template match="/">
    <PostArPayment xmlns:xsd="http://www.w3.org/2000/10/XMLSchema-instance" xsd:noNamespaceSchemaLocation="ARSTPY.XSD">
      <Item>
        <Adjustments>
            <Customer><xsl:value-of select="//CustomerNumber"  /></Customer>
            <Bank><xsl:value-of select="//Bank"  /></Bank>
            <PaymentType><xsl:value-of select="//PaymentType"  /></PaymentType>
            <InvoiceToAdjust>
                <TransactionType><xsl:value-of select="//TransactionType"  /></TransactionType>
                <Invoice><xsl:value-of select="//InvoiceNumber"  /></Invoice>
                <AdjustmentValue><xsl:value-of select="//Amount"  /></AdjustmentValue>
                <AdjustmentTaxCode/>
                <TaxPortionOfAdjustment/>
                <Reference><xsl:value-of select="//Reference"  /></Reference>
                <AdjustmentLedgerCode><xsl:value-of select="//AdjustmentLedgerCode"  /></AdjustmentLedgerCode>
                <JournalNotation><xsl:value-of select="//JournalNotation"  /></JournalNotation>
            </InvoiceToAdjust>
        </Adjustments>
      </Item>
    </PostArPayment>
  </xsl:template>
</xsl:stylesheet>