get_inventory_value
Calculate total inventory value at cost or retail price for financial reporting. Filter by category to analyze specific product groups.
Instructions
Calculate total inventory value at cost or retail price for financial reporting.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Optional: filter by category | |
valueType | Yes | Calculate at: cost or retail price |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Optional: filter by category",
"type": "string"
},
"valueType": {
"description": "Calculate at: cost or retail price",
"type": "string"
}
},
"required": [
"valueType"
],
"type": "object"
}