Invoice

(OBJECT)

Invoice

link GraphQL Schema definition

  • type Invoice {
  • # Invoice internal ID
  • id: ID!
  • # Invocing company
  • supplier: InvoicingCompany!
  • # Customer
  • customer: Customer
  • # Invoice address
  • invoice_address: AddressData
  • # Buy date
  • buy_date: Date!
  • # Due date
  • due_date: DateTime
  • # Pay date - the date of payment of the full amount or the last surcharge
  • pay_date: DateTime
  • # Invoice date
  • created: DateTime!
  • # The invoice is paid
  • paid: Boolean
  • # Variable symbol
  • var_symb: Int
  • # Preinvoice number
  • preinvoice_num: Int
  • # Preinvoice
  • preinvoice: Preinvoice
  • # Invoice number
  • invoice_num: String!
  • # Invoice items
  • items: [OrderItem]!
  • # Invoice price elements
  • price_elements: [OrderPriceElement]!
  • # Summary price
  • sum: Price!
  • # detailed taxing
  • vat_summary: [Taxation]
  • # Original order
  • order: Order
  • # url link for pdf document
  • download_pdf: Url
  • }

link Require by