This commit is contained in:
mmrbnjd
2024-05-23 19:59:19 +03:30
parent 12b89ad630
commit 0fc2efd5ca
10 changed files with 413 additions and 64 deletions

View File

@@ -99,12 +99,15 @@ namespace Shared.DTOs
//مبلغ مالیات بر ارزش افزوده
public decimal? vam { get; set; }
//مبلغ تخفیف
public decimal? dis { get; set; }
//مبلغ بعد از تخفیف
public decimal? adis { get; set; }
public decimal? dis { get; set; } = 0;
//مبلغ کل کالا/خدمت
public decimal? tsstam { get; set; }
//مبلغ قبل از تخفیف
public decimal? prdis { get; set; }
//مبلغ بعد از تخفیف
[MaxLength(18)]
public decimal? adis { get; set; }
}
public class InvoicePaymentDTO
{