update_ton_kho
Update inventory levels for specific items using item codes, manufacturer codes, and warehouse codes to ensure accurate stock tracking and management.
Instructions
Cập nhật tồn kho
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maKhoVatTu | Yes | Mã kho vật tư | |
maNhaSanXuat | Yes | Mã nhà sản xuất | |
maVatTuHangHoa | Yes | Mã vật tư hàng hóa |
Input Schema (JSON Schema)
{
"properties": {
"maKhoVatTu": {
"description": "Mã kho vật tư",
"type": "number"
},
"maNhaSanXuat": {
"description": "Mã nhà sản xuất",
"type": "number"
},
"maVatTuHangHoa": {
"description": "Mã vật tư hàng hóa",
"type": "number"
}
},
"required": [
"maVatTuHangHoa",
"maNhaSanXuat",
"maKhoVatTu"
],
"type": "object"
}