latefee
This commit is contained in:
@@ -209,11 +209,11 @@ const Invoice = () => {
|
|||||||
<th style={{ width: "1cm" }} >ردیف</th>
|
<th style={{ width: "1cm" }} >ردیف</th>
|
||||||
<th style={{ width: '2.5cm' }}>شناسه کالا یا خدمت</th>
|
<th style={{ width: '2.5cm' }}>شناسه کالا یا خدمت</th>
|
||||||
<th style={{ width: '5cm' }}>شرح کالا یا خدمت</th>
|
<th style={{ width: '5cm' }}>شرح کالا یا خدمت</th>
|
||||||
<th style={{ width: "1.5cm" }}>فروشنده</th>
|
|
||||||
<th style={{ width: "1.5cm" }}>تعداد</th>
|
<th style={{ width: "1.5cm" }}>تعداد</th>
|
||||||
<th style={{ width: '2.3cm' }}>مبلغ واحد (ریال)</th>
|
<th style={{ width: '2.3cm' }}>مبلغ واحد (ریال)</th>
|
||||||
<th style={{ width: '2.3cm' }}>مبلغ کل (ریال)</th>
|
<th style={{ width: '2.3cm' }}>مبلغ کل (ریال)</th>
|
||||||
<th style={{ width: '2.3cm' }}>تخفیف (درصد)</th>
|
<th style={{ width: '2.0cm' }}>تخفیف (درصد)</th>
|
||||||
|
<th style={{ width: "1.8cm" }}>جریمه دیرکرد</th>
|
||||||
<th style={{ width: '2.3cm' }}>مبلغ کل پس از تخفیف (ریال)</th>
|
<th style={{ width: '2.3cm' }}>مبلغ کل پس از تخفیف (ریال)</th>
|
||||||
<th style={{ width: '2.3cm' }}>جمع مالیات و عوارض ارزش افزوده (ریال)</th>
|
<th style={{ width: '2.3cm' }}>جمع مالیات و عوارض ارزش افزوده (ریال)</th>
|
||||||
<th style={{ width: '2.5cm' }}>جمع کل پس از تخفیف و مالیات و عوارض (ریال)</th>
|
<th style={{ width: '2.5cm' }}>جمع کل پس از تخفیف و مالیات و عوارض (ریال)</th>
|
||||||
@@ -225,11 +225,11 @@ const Invoice = () => {
|
|||||||
<td>{index + 1}</td>
|
<td>{index + 1}</td>
|
||||||
<td>2720000114542</td>
|
<td>2720000114542</td>
|
||||||
<td>{item.name}</td>
|
<td>{item.name}</td>
|
||||||
<td>داناک</td>
|
|
||||||
<td>{item.count}</td>
|
<td>{item.count}</td>
|
||||||
<td>{NumberFormat(Number(item.unitPrice) * 10)}</td>
|
<td>{NumberFormat(Number(item.unitPrice) * 10)}</td>
|
||||||
<td>{NumberFormat(Number(item.unitPrice) * Number(item.count) * 10)}</td>
|
<td>{NumberFormat(Number(item.unitPrice) * Number(item.count) * 10)}</td>
|
||||||
<td>{NumberFormat(Number(item.discount))}</td>
|
<td>{NumberFormat(Number(item.discount))}</td>
|
||||||
|
<td>{NumberFormat(Number(invoice?.lateFee) * 10)}</td>
|
||||||
<td>{NumberFormat(Number(item.totalPrice) * 10)}</td>
|
<td>{NumberFormat(Number(item.totalPrice) * 10)}</td>
|
||||||
<td>{NumberFormat(Number(item.totalPrice) * 0.1 * 10)}</td>
|
<td>{NumberFormat(Number(item.totalPrice) * 0.1 * 10)}</td>
|
||||||
<td>{NumberFormat(Number(item.totalPrice) * 0.1 * 10 + Number(item.totalPrice) * 10)}</td>
|
<td>{NumberFormat(Number(item.totalPrice) * 0.1 * 10 + Number(item.totalPrice) * 10)}</td>
|
||||||
|
|||||||
Reference in New Issue
Block a user