NonInventPurchasingSystem/CPRNIMS.WebApps/wwwroot/JsFunctions/Common/ColumnCommonV2.js
2026-01-20 07:44:30 +08:00

31 lines
701 B
JavaScript

var colIndexCard = [
{ data: 'poNo' },
{
data: 'poDate',
render: function (data, type, row) {
return formatDateTime(data);
}
},
{ data: 'prNo' },
{
data: 'prDate',
render: function (data, type, row) {
return formatDateTime(data);
}
},
{
data: 'quantity',
render: function (data, type, row, meta) {
return numberWithCommas(data);
}
},
{
data: 'unitPrice',
render: function (data, type, row, meta) {
return numberWithCommas(data);
}
},
{ data: 'supplierName' },
{ data: 'rrDate' },
{ data: 'remarks' }
];