我正在尝试根据ShortName
和LogisticsAddressCountryRegionTranslation
字段从表OrigCountryRegionId
中检索字段LanguageID
的值,检索到LanguageId
来自CustPackingSlipJour
。
我遇到了从OrigCountryRegionId
检索InventTable
的麻烦。
表InventTable
上存在方法CustPackingSlipTrans
,因此我想检索OrigCountryRegionId
上的字段ItemId
的值,该字段在{{在InventTable
表上的方法。
我有一段代码,但不知道如何实现上述解决方案。
CustPackingSlipTrans
答案 0 :(得分:1)
inventTable
方法返回一个InventTable缓冲区,因此您只需检索如下字段:
CustPackingSlipTrans.inventTable().fieldName
所以你的代码看起来像是:
salesPackingSlipTmp.OrigCountryRegionName = LogisticsAddressCountryRegionTranslation::find(CustPackingSlipTrans.inventTable().OrigCountryRegionId, CustPackingSlipJour.LanguageId, false).ShortName;