Inserts a new Delivery Order (DO) into the system with the provided details.
| Name | Type | Required | Description |
|---|---|---|---|
| order_id | string | Yes | Unique identifier for the delivery order. |
| customer_name | string | Yes | Name of the customer receiving the order. |
| delivery_address | string | Yes | Delivery address for the order. |
| items | array | Yes | List of items included in the delivery order. |
Inserts details related to Delivery Order Transport Operations (DO To), such as transport status or shipment tracking information.
| Name | Type | Required | Description |
|---|---|---|---|
| transport_id | string | Yes | Unique identifier for the transport operation. |
| order_id | string | Yes | Delivery order identifier related to the transport. |
| status | string | Yes | Status of the transport (e.g. 'in transit', 'delivered'). |
| location | string | No | Current or last known location of the transport vehicle. |
Inserts a new Purchase Order (PO) into the system with supplier and item details.
| Name | Type | Required | Description |
|---|---|---|---|
| po_number | string | Yes | Unique purchase order number. |
| supplier_name | string | Yes | Name of the supplier. |
| order_date | string (ISO date) | Yes | Date the order was placed. |
| items | array | Yes | List of items to be purchased. |