Sale Voucher

Read-only
@if (dayTotalAmount() > 0) {
Day Total: {{ dayTotalAmount() | currency: 'INR' }} ({{ costCentres().length }} cost centre{{ costCentres().length === 1 ? '' : 's' }})
}
Business Date
@if (dayResource.isLoading()) { } @else if (dayResource.error(); as err) { } @else if (costCentres().length === 0) {
receipt_long

No Sale Vouchers

There are no sale vouchers recorded for the day.

} @else { @for (tab of costCentres(); track trackByTabId($index, tab)) {
{{ tab.costCentreName }} {{ tab.amount | currency: 'INR' }}
Cost Centre {{ tab.costCentreName }}
Date {{ tab.voucher.date }}
Amount {{ tab.amount | currency: 'INR' }}
Status Posted
Product {{ row.batch?.sku?.name || row.batch?.name }} Total Quantity {{ row.quantity | number: '1.2-2' }} {{ activeVoucherQuantity() | number: '1.2-2' }} Rate {{ row.rate | currency: 'INR' }} Tax {{ row.tax | percent: '1.0-2' }} Discount {{ row.discount | percent: '1.0-2' }} Amount {{ row.amount | currency: 'INR' }} {{ tab.amount | currency: 'INR' }} @if (tab.voucher.narration) {
Narration: {{ tab.voucher.narration }}
}

Accounting Entries

Account {{ j.account?.name }} Total Cost Centre {{ j.costCentre?.name }} Debit {{ j.debit === 1 ? (j.amount | currency: 'INR') : '' }} {{ tab.amount | currency: 'INR' }} Credit {{ j.debit === -1 ? (j.amount | currency: 'INR') : '' }} {{ tab.amount | currency: 'INR' }}
}
analytics Day Summary
Business Date {{ dayData()?.date }}
Total Cost Centres {{ costCentres().length }}
Total Items Sold {{ dayTotalItems() | number: '1.0-0' }}
Grand Total Sales {{ dayTotalAmount() | currency: 'INR' }}
Cost Centre {{ row.costCentreName }} Grand Total Line Items {{ row.itemCount | number: '1.0-0' }} {{ dayTotalItems() | number: '1.0-0' }} Total Sale {{ row.amount | currency: 'INR' }} {{ dayTotalAmount() | currency: 'INR' }} Action
}