MonthlyInventory report
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
(function() {
|
||||
window.app.filter('formatCases', formatCases);
|
||||
|
||||
function formatCases() {
|
||||
return function (qty) {
|
||||
if (qty === '' || !isFinite(qty))
|
||||
return '';
|
||||
|
||||
return '(' + qty + ' cs)';
|
||||
}
|
||||
}
|
||||
})();
|
||||
Reference in New Issue
Block a user