Skip to content

Commit

Permalink
DDCORE-9567 sample update
Browse files Browse the repository at this point in the history
  • Loading branch information
majorro committed Dec 13, 2024
1 parent 5ef4d7a commit cf984d7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Samples/Diadoc.Samples/PostUniversalTransferDocument820.cs
Original file line number Diff line number Diff line change
Expand Up @@ -188,20 +188,20 @@ private static UniversalTransferDocumentWithHyphens BuildUserDataContract()
Unit = "796",
Quantity = 10,
QuantitySpecified = true,
HyphenVat = InvoiceTableItemHyphenVat.True,
HyphenSubtotal = InvoiceTableItemHyphenSubtotal.True
HyphenVat = InvoiceTableItemHyphenVat.@true,
HyphenSubtotal = InvoiceTableItemHyphenSubtotal.@true
}
},
HyphenVat = InvoiceTableHyphenVat.True,
HyphenTotal = InvoiceTableHyphenTotal.True
HyphenVat = InvoiceTableHyphenVat.@true,
HyphenTotal = InvoiceTableHyphenTotal.@true
},
Currency = "643",
DocumentCreator = "Наименование экономического субъекта – составителя файла обмена счета-фактуры",
};

// Передадим информацию о подписанте документа, т.е. персональные данные подписываемого сотрудника,
// которые осядут в самом xml:
universalTransferDocumentWithHyphens.UseSignerDetails(new[]
universalTransferDocumentWithHyphens.Signers = new[]
{
new ExtendedSignerDetails_SellerTitle
{
Expand All @@ -213,7 +213,7 @@ private static UniversalTransferDocumentWithHyphens BuildUserDataContract()
Inn = "7750370238",
Position = "директор"
}
});
};
// Альтернативный способ заполнения данных подписанта:
// отправить в хранилище Диадока аналогичный набор данных через метод PostExtendedSignerDetails
// и затем использовать universalTransferDocumentWithHyphens.UseSignerReferences(new SignerReference[])
Expand All @@ -230,4 +230,4 @@ private static UniversalTransferDocumentWithHyphens BuildUserDataContract()
*/
}
}
}
}

0 comments on commit cf984d7

Please sign in to comment.