create_purchase_order
Generate purchase orders for art supply restocking. Automatically includes items below reorder levels and allows custom item additions to maintain optimal inventory.
Instructions
Create a purchase order for restocking. Automatically suggests items below reorder level.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
autoIncludeLowStock | No | Automatically include low stock items from this supplier | |
customItems | No | Optional: comma-separated SKUs to include | |
supplier | Yes | Supplier name |
Input Schema (JSON Schema)
{
"properties": {
"autoIncludeLowStock": {
"description": "Automatically include low stock items from this supplier",
"type": "boolean"
},
"customItems": {
"description": "Optional: comma-separated SKUs to include",
"type": "string"
},
"supplier": {
"description": "Supplier name",
"type": "string"
}
},
"required": [
"supplier"
],
"type": "object"
}