-
Notifications
You must be signed in to change notification settings - Fork 27.4k
currency filter on negative value not in parentheses - AngularJS 1.3 to 1.4 regression #12870
Comments
How's that a regression? It seems to be that this is now the correct behavior. |
Hey @Narretz thanks for chiming in:
|
I guess we understood this as a bug fix; if you think the behavior was correct, it's a regression for you. I've personally never seen parentheses standing for negative values, but then again I have no idea about accounting or finance. |
@wbeange @Narretz if we add one more parameter to currency filter called negativeFormat and can have value of '()' or '-' In Microsoft office you can choose how to format negative currencies |
Hi, In my non-expert opinion, i prefer the no-parentheses representation or supporting. I understand that parentheses are used for accountancy but for normal users and user cases(online shops, banks, etc) i think showing them like that is strange. There are quite a few people on stackoverflow interested in this and ways to go around it: |
Negative currency values, in US English at least, are typically displayed in parentheses instead of with a minus sign. Microsoft Excel also displays negative currency values in parentheses. It looks like the Angular 1.3 behavior was correct, and the 1.4 behavior is incorrect. See: http://ux.stackexchange.com/questions/1869/preferred-format-to-display-negative-currency-us-english/1875 |
I believe the fix is to change negPre and negSuf on lines 132 and 133 of this file: The correct values are:
This is the commit which changed them: |
While parenthesis might we appropriate for some specific contexts it's probably not for all (and definitely not in all locales). Angular.js uses the Google Closure I18N library, to generate its own I18N files and there is nothing about a special negative pattern using parenthesis there. (If there were, Angular would pick it up.) As already mentioned, using parenthesis can be confusing in many users and apps, so it's not a good default imo. If it is appropriate for a secific app, one could:
|
I think the clear feedback here is that there should be an option to specify which behavior you get. |
I agree that this should be an option. In many business contexts it is appropriate and preferred to have negative numbers wrapped in parens, particularly when replicating output formatting from Excel or other accounting software. While it may not be the best "default" option as it were, it does seem it would be prudent to have this as an option, as it is definitely not a bug, and could break expectations. |
The currency filter now formats negative numbers with a negative sign, where it previously wrapped the negative number in brackets.
AngularJS 1.3 currency filter:
$scope.filteredNumber = $filter('currency')("-4.962016");
results in($4.96)
http://plnkr.co/edit/iEkkjw?p=preview
AngularJS 1.4 currency filter:
$scope.filteredNumber = $filter('currency')("-4.962016");
results in-$4.96
http://plnkr.co/edit/3dwKuIHTk9tzGOdZ7Xly?p=preview
The text was updated successfully, but these errors were encountered: