Late Invoice with Payment

Author: Accord Project

lateinvoicewithpayment@0.6.0 Contract ^0.21.0 02f1c8de643c3148e4352452019132fe7afdd2beeb83b0956267293c01280cb0

A sample Late invoice clause which emits a payment obligation.

Download Archive Download Compiled Archive Open in Template Studio Open in VSCode Web

Late Invoice Clause With Payment

A sample Late invoice clause which emits a payment obligation.

Template Text

2.4 "Betty Buyer" is not required to pay any invoice that is issued more than 180 days after it is due to be issued by "Steve Seller".

2.4 "Betty Buyer" is not required to pay any invoice that is issued more than 180 days after it is due to be issued by "Steve Seller".
2.4 {{purchaser}} is not required to pay any invoice that is issued more than {{maximumDelay}} after it is due to be issued by {{supplier}}.
{
    "$class": "org.accordproject.lateinvoicewithpayment.LateInvoiceContract",
    "maximumDelay": {
        "$class": "org.accordproject.time.Duration",
        "amount": 180,
        "unit": "days"
    },
    "purchaser": {
        "$class": "org.accordproject.cicero.contract.AccordParty",
        "partyId": "Betty Buyer"
    },
    "supplier": {
        "$class": "org.accordproject.cicero.contract.AccordParty",
        "partyId": "Steve Seller"
    },
    "contractId": "6619a610-096a-4303-9e90-ad69a61c0979"
}

Template Model

namespace org.accordproject.lateinvoicewithpayment

import org.accordproject.cicero.contract.* from https://models.accordproject.org/cicero/contract.cto
import org.accordproject.cicero.runtime.* from https://models.accordproject.org/cicero/runtime.cto
import org.accordproject.time.* from https://models.accordproject.org/v2.0/time.cto
import org.accordproject.money.* from https://models.accordproject.org/money.cto

/**
 * Defines the data model for the LateInvoice template.
 * This defines the structure of the abstract syntax tree that the parser for the template
 * must generate from input source text.
 */
asset LateInvoiceContract extends AccordContract {
  /**
   * If the invoice deliver date  >= termination date then the buyer does not have to pay
   */
  o Duration maximumDelay
  o AccordParty purchaser
  o AccordParty supplier
}

/**
 * Defines the input data required by the template
 */
transaction LateInvoiceRequest extends Request {
  /**
   * What was the agreed delivery date for the invoice?
   */
  o DateTime invoiceDue
  o MonetaryAmount amountDue
}

/**
 * Defines the output data for the template
 */
transaction LateInvoiceResponse extends Response {
  o Boolean paymentRequired
  o String cause optional
}

Model Dependencies

Template Logic

Find the full logic for this template on on GitHub.

State Types

Type Sample JSON
org.accordproject.cicero.contract.AccordContractState
{
    "$class": "org.accordproject.cicero.contract.AccordContractState",
    "stateId": "7f28fe00-cd1d-11ea-920c-ade26666d144"
}

Request Types

Type Sample JSON
org.accordproject.lateinvoicewithpayment.LateInvoiceRequest
{
    "$class": "org.accordproject.lateinvoicewithpayment.LateInvoiceRequest",
    "invoiceDue": "2020-07-23T15:48:35.935-04:00",
    "amountDue": {
        "$class": "org.accordproject.money.MonetaryAmount",
        "doubleValue": 64.812,
        "currencyCode": "XBD"
    },
    "transactionId": "7f28afe0-cd1d-11ea-920c-ade26666d144",
    "timestamp": "2020-07-23T15:48:35.935-04:00"
}

Response Types

Type Sample JSON
org.accordproject.lateinvoicewithpayment.LateInvoiceResponse
{
    "$class": "org.accordproject.lateinvoicewithpayment.LateInvoiceResponse",
    "paymentRequired": false,
    "cause": "Do duis pariatur magna.",
    "transactionId": "7f28d6f0-cd1d-11ea-920c-ade26666d144",
    "timestamp": "2020-07-23T15:48:35.935-04:00"
}

Events Types

Type Sample JSON
org.accordproject.cicero.runtime.PaymentObligation
{
    "$class": "org.accordproject.cicero.runtime.PaymentObligation",
    "amount": {
        "$class": "org.accordproject.money.MonetaryAmount",
        "doubleValue": 222.955,
        "currencyCode": "XOF"
    },
    "description": "Aliquip ea ex.",
    "contract": "resource:org.accordproject.lateinvoicewithpayment.LateInvoiceContract#4599",
    "promisor": "resource:org.accordproject.cicero.contract.AccordParty#8967",
    "promisee": "resource:org.accordproject.cicero.contract.AccordParty#7198",
    "deadline": "2020-07-23T15:48:35.936-04:00",
    "eventId": "7f28fe01-cd1d-11ea-920c-ade26666d144",
    "timestamp": "2020-07-23T15:48:35.936-04:00"
}

Technical Integration

Please refer to the Cicero documentation for details and examples of how to integrate a call to a Cicero template into your application.

View the Latest code for this template on GitHub.