Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Coopdevs OCB mirror
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Coopdevs
Odoo
Coopdevs OCB mirror
Commits
4aafc01a
Commit
4aafc01a
authored
13 years ago
by
Xavier Morel
Browse files
Options
Downloads
Patches
Plain Diff
[ADD] function to insert 'thousands' separators
bzr revid: xmo@openerp.com-20111114153436-pj6vq6lamfrjpg7f
parent
005d761e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
addons/web/static/src/js/formats.js
+47
-0
47 additions, 0 deletions
addons/web/static/src/js/formats.js
addons/web/static/test/formats.js
+30
-0
30 additions, 0 deletions
addons/web/static/test/formats.js
with
77 additions
and
0 deletions
addons/web/static/src/js/formats.js
+
47
−
0
View file @
4aafc01a
openerp
.
web
.
formats
=
function
(
openerp
)
{
var
_t
=
openerp
.
web
.
_t
;
/**
* Intersperses ``separator`` in ``str`` at the positions indicated by
* ``indices``.
*
* ``indices`` is an array of relative offsets (from the previous insertion
* position, starting from the end of the string) at which to insert
* ``separator``.
*
* There are two special values:
*
* ``-1``
* indicates the insertion should end now
* ``0``
* indicates that the previous section pattern should be repeated (until all
* of ``str`` is consumed)
*
* @param {String} str
* @param {Array<Number>} indices
* @param {String} separator
* @returns {String}
*/
openerp
.
web
.
intersperse
=
function
(
str
,
indices
,
separator
)
{
separator
=
separator
||
''
;
var
result
=
[],
last
=
str
.
length
;
for
(
var
i
=
0
;
i
<
indices
.
length
;
++
i
)
{
var
section
=
indices
[
i
];
if
(
section
===
-
1
||
last
<=
0
)
{
// Done with string, or -1 (stops formatting string)
break
;
}
else
if
(
section
===
0
&&
i
===
0
)
{
// repeats previous section, which there is none => stop
break
;
}
else
if
(
section
===
0
)
{
// repeat previous section forever
//noinspection AssignmentToForLoopParameterJS
section
=
indices
[
--
i
];
}
result
.
push
(
str
.
substring
(
last
-
section
,
last
));
last
-=
section
;
}
var
s
=
str
.
substring
(
0
,
last
);
if
(
s
)
{
result
.
push
(
s
);
}
return
result
.
reverse
().
join
(
separator
);
};
/**
* Formats a single atomic value based on a field descriptor
*
...
...
This diff is collapsed.
Click to expand it.
addons/web/static/test/formats.js
+
30
−
0
View file @
4aafc01a
...
...
@@ -65,4 +65,34 @@ $(document).ready(function () {
var
val
=
openerp
.
web
.
parse_value
(
str
,
{
type
:
"
float
"
});
equal
(
val
,
-
134112.1234
);
});
test
(
'
intersperse
'
,
function
()
{
var
g
=
openerp
.
web
.
intersperse
;
equal
(
g
(
""
,
[]),
""
);
equal
(
g
(
"
0
"
,
[]),
"
0
"
);
equal
(
g
(
"
012
"
,
[]),
"
012
"
);
equal
(
g
(
"
1
"
,
[]),
"
1
"
);
equal
(
g
(
"
12
"
,
[]),
"
12
"
);
equal
(
g
(
"
123
"
,
[]),
"
123
"
);
equal
(
g
(
"
1234
"
,
[]),
"
1234
"
);
equal
(
g
(
"
123456789
"
,
[]),
"
123456789
"
);
equal
(
g
(
"
&ab%#@1
"
,
[]),
"
&ab%#@1
"
);
equal
(
g
(
"
0
"
,
[]),
"
0
"
);
equal
(
g
(
"
0
"
,
[
1
]),
"
0
"
);
equal
(
g
(
"
0
"
,
[
2
]),
"
0
"
);
equal
(
g
(
"
0
"
,
[
200
]),
"
0
"
);
equal
(
g
(
"
12345678
"
,
[
0
],
'
.
'
),
'
12345678
'
);
equal
(
g
(
""
,
[
1
],
'
.
'
),
''
);
equal
(
g
(
"
12345678
"
,
[
1
],
'
.
'
),
'
1234567.8
'
);
equal
(
g
(
"
12345678
"
,
[
1
],
'
.
'
),
'
1234567.8
'
);
equal
(
g
(
"
12345678
"
,
[
2
],
'
.
'
),
'
123456.78
'
);
equal
(
g
(
"
12345678
"
,
[
2
,
1
],
'
.
'
),
'
12345.6.78
'
);
equal
(
g
(
"
12345678
"
,
[
2
,
0
],
'
.
'
),
'
12.34.56.78
'
);
equal
(
g
(
"
12345678
"
,
[
-
1
,
2
],
'
.
'
),
'
12345678
'
);
equal
(
g
(
"
12345678
"
,
[
2
,
-
1
],
'
.
'
),
'
123456.78
'
);
equal
(
g
(
"
12345678
"
,
[
2
,
0
,
1
],
'
.
'
),
'
12.34.56.78
'
);
equal
(
g
(
"
12345678
"
,
[
2
,
0
,
0
],
'
.
'
),
'
12.34.56.78
'
);
equal
(
g
(
"
12345678
"
,
[
2
,
0
,
-
1
],
'
.
'
),
'
12.34.56.78
'
);
});
});
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment