Shipment book-in from code
Hi,
Jiwa 7.0.149
I'm trying to create shipment book-in, assign qty (with serial no) and activate from .NET app.
so far, I'm having trouble adding line detail record
Code won't compile because "Set" accessor of those properties are not accessible.
Similar code works in GRN.
Jiwa 7.0.149
I'm trying to create shipment book-in, assign qty (with serial no) and activate from .NET app.
so far, I'm having trouble adding line detail record
- Code: Select all
oLineDetail = New JiwaLandedCost.Shipment.BookInLineDetail
oLineDetail.RecID = JiwaApplication.Manager.Instance.Database.NewGUID
oLineDetail.Quantity = BatchQty
oLineDetail.SerialNo = SerialNo
oLineDetail.ExpiryDate = ExpiryDate
oLineDetail.BinLocation = ""
oShpLine.BookInLineDetails.Add(oLineDetail)
Code won't compile because "Set" accessor of those properties are not accessible.
Similar code works in GRN.