Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public void GetXmlTest()

PurchasingTransactionApprove record = new PurchasingTransactionApprove("unittest")
{
ExternalId = "Purchase Order-PO0213",
DocumentId = "Purchase Order-PO0213",
Comment = "Final approval for the quarter"
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public void GetXmlTest()
PurchasingTransactionDecline record = new PurchasingTransactionDecline("unittest")

{
ExternalId = "Purchase Order-PO0213",
DocumentId = "Purchase Order-PO0213",
Comment = "Need to wait on this"
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public override void WriteXml(ref IaXmlWriter xml)

xml.WriteStartElement("PODOCUMENT");

xml.WriteElement("DOCID", ExternalId);
xml.WriteElement("DOCID", DocumentId);

xml.WriteElement("COMMENT", Comment);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public override void WriteXml(ref IaXmlWriter xml)

xml.WriteStartElement("PODOCUMENT");

xml.WriteElement("DOCID", ExternalId);
xml.WriteElement("DOCID", DocumentId);

xml.WriteElement("COMMENT", Comment);

Expand Down