feat(SPG-267): report cash withdrawals
parent
3b8310581b
commit
64d812bef1
|
@ -73,6 +73,12 @@ export default <ReportConfigEntity>{
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
filter_configs: [
|
filter_configs: [
|
||||||
|
{
|
||||||
|
filed_label: 'Tanggal',
|
||||||
|
filter_column: 'main__date',
|
||||||
|
field_type: FILTER_FIELD_TYPE.date_range_picker,
|
||||||
|
filter_type: FILTER_TYPE.DATE_IN_RANGE_EPOCH,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
filed_label: 'Nama Penarik',
|
filed_label: 'Nama Penarik',
|
||||||
filter_column: 'main__drawn_by_name',
|
filter_column: 'main__drawn_by_name',
|
||||||
|
@ -85,5 +91,11 @@ export default <ReportConfigEntity>{
|
||||||
field_type: FILTER_FIELD_TYPE.input_tag,
|
field_type: FILTER_FIELD_TYPE.input_tag,
|
||||||
filter_type: FILTER_TYPE.TEXT_MULTIPLE_CONTAINS,
|
filter_type: FILTER_TYPE.TEXT_MULTIPLE_CONTAINS,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
filed_label: 'No. PoS',
|
||||||
|
filter_column: 'main__pos_number',
|
||||||
|
field_type: FILTER_FIELD_TYPE.input_tag,
|
||||||
|
filter_type: FILTER_TYPE.TEXT_MULTIPLE_CONTAINS,
|
||||||
|
},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
|
@ -23,5 +23,5 @@ export const TransactionReportConfig: ReportConfigEntity[] = [
|
||||||
BookingReport,
|
BookingReport,
|
||||||
RefundsReport,
|
RefundsReport,
|
||||||
CashierLogReport,
|
CashierLogReport,
|
||||||
// CashWithdrawalsReport,
|
CashWithdrawalsReport,
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in New Issue