Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Overview

This data structure reprensents one contract line item that is associated with the invoice.  It contains a reference to an existing contract line item and the applied prepaid amount on this invoice.   

Format


Panel
titlePwsInvoiceContractLineItem

...

Element

Data Type

Required?

Default

Description

AppliedPrepaidAmount

Double

No

0

The amount applied to this invoice from previous payment. 

ContractLineItemIdentity

PwsContractLineItemRef

Yes


This structure is used to uniquely identify a contract line item.

Usage Example(s)


Code Block
languagexml
titleExample 01
collapsetrue
 					<b:PwsInvoiceContractLineItem>
                        <b:AppliedPrepaidAmount>500</b:AppliedPrepaidAmount>
                        <b:ContractLineItemIdentity>
                           <b:ContractLineItemCode>VANGOGH-CL1</b:ContractLineItemCode>
                           <b:ContractLineItemId i:nil="true"/>
                           <b:ContractLineItemUid>1152921504606994259</b:ContractLineItemUid>
                        </b:ContractLineItemIdentity>
                     </b:PwsInvoiceContractLineItem>

...