OBJECT
MaterialTransaction
A material transaction.
link GraphQL Schema definition
- type MaterialTransaction {
- # The unique ID.
- Int! :
- # The corresponding material.
- Material :
- # The order for this transaction.
- Order :
- # The supplier for this transaction.
- Supplier :
- # The asset for this transaction.
- Asset :
- # The quantity for this transaction.
- Float! :
- # The rate for this transaction.
- Float! :
- # Flag whether this transaction is a RECONCILE operation.
- Boolean! :
- # The comments for this transaction.
- String :
- # The dockets associated for this transaction.
- Docket] : [
- # The user that created this transaction.
- User :
- # The date this transaction is created.
- DateTime! :
- # The user that modified this transaction.
- User :
- # The date this transaction is modified.
- DateTime :
- # The order task linked to the material transaction.
- OrderTask :
- # (DEPRECATED) The work item code linked to the material transaction.
- WorkItem @deprecated( reason: "Use work_item instead" ) :
- # The work item code linked to the material transaction.
- WorkItem :
- # The data for the chargeable item additional questions.
- UntypedValue :
- # The data for the chargeable item additional answers.
- UntypedValue :
- # The user that deleted this transaction.
- User :
- # The date the material transaction was deleted.
- DateTime :
- }