This commit is contained in:
@@ -8,12 +8,6 @@ MISC ITEMS THAT CAME UP
|
|||||||
todo: datatable number currency zero shows blank on grid, not zero
|
todo: datatable number currency zero shows blank on grid, not zero
|
||||||
Saw it in the imported rates
|
Saw it in the imported rates
|
||||||
|
|
||||||
todo: datatable numbers
|
|
||||||
currency and possibly other numbers should center justify in their columns or left or whatever it takes to not look so weird but still be comparable / lined up or whatever
|
|
||||||
OR
|
|
||||||
Maybe it's the column header itself that should be moved
|
|
||||||
NOTE: CUrrency has problem, decimal apparently does not...investigate
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
todo: NEXT DEPLOY TO DEVOPS attach a photo from phone, no error just does nothing
|
todo: NEXT DEPLOY TO DEVOPS attach a photo from phone, no error just does nothing
|
||||||
|
|||||||
@@ -234,9 +234,6 @@ export default {
|
|||||||
if (!value) {
|
if (!value) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (value == "") {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return new Date(value) < new Date();
|
return new Date(value) < new Date();
|
||||||
},
|
},
|
||||||
@@ -245,7 +242,7 @@ export default {
|
|||||||
// currency display
|
// currency display
|
||||||
//
|
//
|
||||||
currencyLocalized(value, languageName, currencyName) {
|
currencyLocalized(value, languageName, currencyName) {
|
||||||
if (!value) return "";
|
if (value == null) return "";
|
||||||
if (!languageName) {
|
if (!languageName) {
|
||||||
languageName = this.getBrowserLanguages();
|
languageName = this.getBrowserLanguages();
|
||||||
}
|
}
|
||||||
@@ -263,7 +260,7 @@ export default {
|
|||||||
// decimal format display
|
// decimal format display
|
||||||
//
|
//
|
||||||
decimalLocalized(value, languageName) {
|
decimalLocalized(value, languageName) {
|
||||||
if (!value) return "";
|
if (value == null) return "";
|
||||||
if (!languageName) {
|
if (!languageName) {
|
||||||
languageName = this.getBrowserLanguages();
|
languageName = this.getBrowserLanguages();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user