Add option to disable PD check on service side

This commit is contained in:
2025-09-13 11:52:55 +09:00
parent 23eee87371
commit df221a61a2
3 changed files with 14 additions and 0 deletions

View File

@ -50,6 +50,11 @@ namespace Hcs.Client.Api.Request.Bills
payload.year
};
if (payload.confirmAmountsCorrect)
{
items.Add(true);
}
var paymentInformations = new Dictionary<ImportPaymentDocumentPayload.PaymentInformation, importPaymentDocumentRequestPaymentInformation>();
foreach (var entry in payload.paymentInformation)
{