OBJECT

MaterialTransaction

A material transaction.

link GraphQL Schema definition

  • type MaterialTransaction {
  • # The unique ID.
  • id: Int!
  • # The corresponding material.
  • material: Material
  • # The order for this transaction.
  • order: Order
  • # The supplier for this transaction.
  • supplier: Supplier
  • # The asset for this transaction.
  • asset: Asset
  • # The quantity for this transaction.
  • quantity: Float!
  • # The rate for this transaction.
  • rate: Float!
  • # Flag whether this transaction is a RECONCILE operation.
  • is_reconcile: Boolean!
  • # The comments for this transaction.
  • comments: String
  • # The dockets associated for this transaction.
  • dockets: [Docket]
  • # The user that created this transaction.
  • created_by: User
  • # The date this transaction is created.
  • created_time: DateTime!
  • # The user that modified this transaction.
  • modified_by: User
  • # The date this transaction is modified.
  • modified_time: DateTime
  • # The order task linked to the material transaction.
  • order_task: OrderTask
  • # (DEPRECATED) The work item code linked to the material transaction.
  • work_item_code: WorkItem @deprecated( reason: "Use work_item instead" )
  • # The work item code linked to the material transaction.
  • work_item: WorkItem
  • # The data for the chargeable item additional questions.
  • additional_questions: UntypedValue
  • # The data for the chargeable item additional answers.
  • additional_answers: UntypedValue
  • # The user that deleted this transaction.
  • deleted_by: User
  • # The date the material transaction was deleted.
  • deleted_time: DateTime
  • }