Üretim emri üzerinde ardışık malzeme temini yapabildiğimiz fonksiyondur.

 

ParametreleriTypeAçıklama
prodOrdRef

int

Üretim emri refaransı

meetType

MeetTypeList

karşılama türü nesnesi

negLevelCtrl

Boolean

Negatif seviye kontrolü 

consLevel

int

 Temin seviyesi
Return TypeAçıklama
Booleanİşlemin gerçekleşip gerçekleşmediğini bildirir


MeetTypeList ()

Data PropertiesTypeAçı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
POSThttp://localhost:32001/api/v1/productions/ConsecutiveProcurementOfProdOrd/96/true/1
JSON
{
 "invTrans": true,
 "production": true,
 "purchase": true,
 "stockMeet": true
}


Telif HakkıKullanım KoşullarıGizlilik
Copyright © 2018 Logo Yazılım