Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sdkjs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
sdkjs
Commits
a20a47bb
Commit
a20a47bb
authored
May 23, 2016
by
Alexander.Trofimov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix bug 32463
ToDo remake parse formulas
parent
98e8f241
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
cell/model/WorkbookElems.js
cell/model/WorkbookElems.js
+2
-1
common/editorscommon.js
common/editorscommon.js
+1
-1
No files found.
cell/model/WorkbookElems.js
View file @
a20a47bb
...
...
@@ -3309,6 +3309,7 @@ CCellValue.prototype =
return
cErrorOrigin
[
"
ref
"
];
break
;
case
cErrorLocal
[
"
name
"
]:
case
cErrorLocal
[
"
name
"
].
replace
(
'
\\
'
,
''
):
// ToDo это неправильная правка для бага 32463 (нужно переделать parse формул)
return
cErrorOrigin
[
"
name
"
];
break
;
case
cErrorLocal
[
"
num
"
]:
...
...
@@ -3646,7 +3647,7 @@ CCellValue.prototype =
return
cErrorLocal
[
"
ref
"
];
break
;
case
cErrorOrigin
[
"
name
"
]:
return
cErrorLocal
[
"
name
"
]
;
return
cErrorLocal
[
"
name
"
]
.
replace
(
'
\\
'
,
''
);
// ToDo это неправильная правка для бага 32463 (нужно переделать parse формул)
break
;
case
cErrorOrigin
[
"
num
"
]:
return
cErrorLocal
[
"
num
"
];
...
...
common/editorscommon.js
View file @
a20a47bb
...
...
@@ -611,7 +611,7 @@ function test_defName(){
var
cStrucTableLocalColumns
=
null
,
cBoolLocal
=
{},
cErrorOrigin
=
{
"
nil
"
:
"
#NULL!
"
,
"
div
"
:
"
#DIV
\
/0!
"
,
"
value
"
:
"
#VALUE!
"
,
"
ref
"
:
"
#REF!
"
,
"
name
"
:
"
#NAME
\\
?
"
,
"
num
"
:
"
#NUM!
"
,
"
na
"
:
"
#N
\
/A
"
,
"
getdata
"
:
"
#GETTING_DATA
"
,
"
uf
"
:
"
#UNSUPPORTED_FUNCTION!
"
},
cErrorOrigin
=
{
"
nil
"
:
"
#NULL!
"
,
"
div
"
:
"
#DIV
\
/0!
"
,
"
value
"
:
"
#VALUE!
"
,
"
ref
"
:
"
#REF!
"
,
"
name
"
:
"
#NAME?
"
,
"
num
"
:
"
#NUM!
"
,
"
na
"
:
"
#N
\
/A
"
,
"
getdata
"
:
"
#GETTING_DATA
"
,
"
uf
"
:
"
#UNSUPPORTED_FUNCTION!
"
},
cErrorLocal
=
{};
function
build_local_rx
(
data
){
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment