Цена за единицу не обновляется при создании элементов в eConnect
Я использовал eConnect для подключения моего приложения.NET к Dynamics GP. Это мой код C# eConnect для создания / обновления элемента в Dynamics GP.
taUpdateCreateItemRcd GpLineItem = new taUpdateCreateItemRcd();
GpLineItem.ITEMNMBR = "iPartNumber";
GpLineItem.ITEMDESC = "iDescription";
GpLineItem.CURRCOST = 50.65;
GpLineItem.ITMCLSCD = "classID";
GpLineItem.ITEMTYPE = 1;
GpLineItem.Purchase_Tax_Options = 2;
GpLineItem.UOMSCHDL = "EACH";
GpLineItem.UpdateIfExists = 1;
IVItemMasterType ivMasterType = new IVItemMasterType();
ivMasterType.taUpdateCreateItemRcd = GpLineItem;
IVItemMasterType[] ivMasterTypeArray = { ivMasterType };
eConnectType eConnect = new eConnectType();
eConnect.IVItemMasterType = ivMasterTypeArray;
// Serialize the master vendor type in memory.
MemoryStream memoryStream = new MemoryStream();
XmlSerializer xmlSerializer = new XmlSerializer(eConnect.GetType());
// Serialize the eConnectType.
xmlSerializer.Serialize(memoryStream, eConnect);
// Reset the position of the memory stream to the start.
memoryStream.Position = 0;
// Create an XmlDocument from the serialized eConnectType in memory.
XmlDocument xmlDocument = new XmlDocument();
xmlDocument.Load(memoryStream);
memoryStream.Close();
// Call eConnect to process the XmlDocument.
eConnectMethods.CreateEntity(connectionString, xmlDocument.OuterXml);
Когда я проверил xmlDocument, у меня есть только эти поля ниже.
<?xml version="1.0"?><eConnect xmlns:xsi="www.w3.org/.../XMLSchema-instance" xmlns:xsd="www.w3.org/.../XMLSchema">
<IVItemMasterType>
<eConnectProcessInfo xsi:nil="true" />
<taRequesterTrxDisabler_Items xsi:nil="true" />
<taUpdateCreateItemRcd>
<ITEMNMBR>iPartNumber</ITEMNMBR>
<ITEMDESC>iDescription</ITEMDESC>
<ITMCLSCD>RETAIL</ITMCLSCD>
<UOMSCHDL>EACH</UOMSCHDL>
</taUpdateCreateItemRcd>
<taUpdateCreateItemCurrencyRcd_Items xsi:nil="true" />
<taIVCreateItemPriceListLine_Items xsi:nil="true" />
<taIVCreateItemPriceListHeader xsi:nil="true" />
<taItemSite_Items xsi:nil="true" />
<taCreateItemVendors_Items xsi:nil="true" />
<taCreateKitItemRcd_Items xsi:nil="true" />
<taCreateInternetAddresses_Items xsi:nil="true" />
</IVItemMasterType>
</eConnect>
Понятия не имею, что не так в моем коде. Пожалуйста, помогите мне в этом. Вся ваша помощь очень ценится. Благодарю.
2 ответа
Ответил Тим Ваппат
Вы должны "указать", что вы предоставляете некоторые поля, текущая стоимость является одним из них.
См. Описание класса в Руководстве для программистов eConnect (выполните поиск CURRCOSTSpecified).
Я думаю, что это будет что-то вроде:
GpLineItem.CURRCostSpecified = true;
в качестве еще одной строки в вашем коде, где вы устанавливаете члены класса taUpdateCreateItemRcd.
Мы все сделали это в какое-то время...
Я считаю, что вы должны добавить эту строку: GpLineItem.CURRCOSTSpecified = true;
С eConnect вы должны сделать это с большим количеством значений.