İrsaliye parçalama işlemini Lobjects içerisinde yapan method'dur.
Parametre | Type | Açıklama |
---|---|---|
dispref | int | İrsaliye referansı. |
ficheNo | int | Fiş numarası |
dateVal | int | Tarihi |
time | int | Zaman |
doCode | string | Belge numarası. |
speCode | string | Özel kod |
cyphCode | string | Yetki kodu. |
slsmanCode | string | Satış eleman kodu |
projCode | string | Proje kodu |
shipClCode | string | Sevkiyat hesabı cari hesap kodu. |
shipAddr | string | Sevkiyat adresi |
docTrNo | string | Döküman izleme numarası |
stInfos | StLnInfoList | İrsaliye satır listesi. |
Return Type | Açıklama | |
int | İşlemin gerçekleşip gerçekleşmediğini döner. |
StLnInfoList
Parametre | Type | Açıklama |
---|---|---|
Item | int | İrasliye satır bilgisi. |
Count | int | İrasliye satır sayısı. |
C# Örneği
UnityObjects.StLnInfoList stInfos=Global.UnityApp.NewStLnInfoList();
stInfos=Global.UnityApp.GetStLnInfoList(1,stInfos);
stInfos.Item[0].amount=4;
object dt=0;
object tm=0;
Global.UnityApp.PackDate(17, 05, 2013,ref dt);
Global.UnityApp.PackTime(10, 05,50, ref tm);
int nr = Global.UnityApp.ShredDispatch(1, "~", Convert.ToInt32(dt),Convert.ToInt32(tm), "XXX", "aa", "bb", "", "", "", "", " ", stInfos);
if (nr!=0)
{
MessageBox.Show("irsaliye ref:"+nr.ToString());
}
else
{
MessageBox.Show("hata :" + Global.UnityApp.GetLastError() +" - " + Global.UnityApp.GetLastErrorString());
}
Copyright © 2018 Logo Yazılım