OrderStatus

(OBJECT)

Order status definition

link GraphQL Schema definition

  • type OrderStatus implements IStatus {
  • # Internal status ID
  • id: ID!
  • # Status name
  • name: String!
  • # Status color
  • color: Color
  • # text note
  • note: String
  • # change of order by customer is allowed for this status
  • order_change: Boolean!
  • # system preset to send notification email when setting this status
  • statusmail: Boolean!
  • # system preset to send notification SMS when setting this status
  • send_sms: Boolean!
  • # action in warehouse when setting this status
  • warehouse_action: WarehouseAction
  • }

link Require by