erp_stok_olustur
Create new stock items in the ERP system through the MCP server. Input required details like stock code and name to generate stock records and provide a direct link for user access.
Instructions
ERP sisteminde yeni stok kartı oluşturur. oluşturduktan sonra https://erp.aaro.com.tr/Stok/Kalem?id={id} kullanıcıya bu linki sunabilir
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Brm1ID | No | Birim ID (varsayılan: 1 - Adet) | |
Durum | No | Aktif/Pasif durumu (varsayılan: true) | |
SirketID | No | Şirket ID (varsayılan: 1) | |
StokAdi | Yes | Stok adı (zorunlu) | |
StokKisaAdi | No | Stok kısa adı | |
StokKisaKodu | No | Stok kısa kodu | |
StokKodu | Yes | Stok kodu (zorunlu) | |
StokMuhasebeID | No | Muhasebe ID | |
SubeID | No | Şube ID (varsayılan: 1) | |
TipID | No | Stok tipi (varsayılan: 105001) |
Input Schema (JSON Schema)
{
"properties": {
"Brm1ID": {
"description": "Birim ID (varsayılan: 1 - Adet)",
"type": "string"
},
"Durum": {
"description": "Aktif/Pasif durumu (varsayılan: true)",
"type": "boolean"
},
"SirketID": {
"description": "Şirket ID (varsayılan: 1)",
"type": "string"
},
"StokAdi": {
"description": "Stok adı (zorunlu)",
"type": "string"
},
"StokKisaAdi": {
"description": "Stok kısa adı",
"type": "string"
},
"StokKisaKodu": {
"description": "Stok kısa kodu",
"type": "string"
},
"StokKodu": {
"description": "Stok kodu (zorunlu)",
"type": "string"
},
"StokMuhasebeID": {
"description": "Muhasebe ID",
"type": "string"
},
"SubeID": {
"description": "Şube ID (varsayılan: 1)",
"type": "string"
},
"TipID": {
"description": "Stok tipi (varsayılan: 105001)",
"type": "string"
}
},
"required": [
"StokKodu",
"StokAdi"
],
"type": "object"
}