Üretim emri üzerinde ardışık malzeme temini yapabildiğimiz fonksiyondur.
Parametreleri | Type | Açıklama |
---|---|---|
prodOrdRef | int | Üretim emri refaransı |
meetType | MeetTypeList | karşılama türü nesnesi |
negLevelCtrl | Boolean | Negatif seviye kontrolü |
consLevel | int | Temin seviyesi |
Return Type | Açıklama | |
Boolean | İşlemin gerçekleşip gerçekleşmediğini bildirir |
MeetTypeList ()
Data Properties | Type | Açıklama |
---|---|---|
invTrans | Boolean | Karşılama türü ambar transferi |
production | Boolean | Karşılama türü üretim emri |
purchase | Boolean | Karşılama türü satınalma |
stockMeet | Boolean | Karşılama türü stoktan kullanım |
C# Örneği
UnityObjects.ProductionApplication prod = Global.UnityApp.NewProductionApplication();
UnityObjects.MeetTypeList mTypes = prod.NewMeetTypes();
mTypes.purchase = true;
mTypes.production = true;
mTypes.invTrans = true;
mTypes.stockMeet = true;
if (prod.ConsecutiveProcurementOfProdOrd(3,mTypes,true,5))
{
MessageBox.Show("İşlem gerçekleşti");
}
else
MessageBox.Show("Hata");
REQUEST | |
---|---|
POST | http://localhost:32001/api/v1/productions/ConsecutiveProcurementOfProdOrd/96/true/1 |
JSON
|
Copyright © 2018 Logo Yazılım