projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ce1e79d
)
GoBD: In data " durch ' ersetzen und ! durch .
author
Sven Schöling
<s.schoeling@linet-services.de>
Mon, 23 Nov 2015 12:52:59 +0000
(13:52 +0100)
committer
Sven Schöling
<s.schoeling@linet-services.de>
Fri, 28 Oct 2016 15:11:20 +0000
(17:11 +0200)
Das sollte deren Import glücklich machen.
SL/GoBD.pm
patch
|
blob
|
history
diff --git
a/SL/GoBD.pm
b/SL/GoBD.pm
index
950bfb6
..
53a59c4
100644
(file)
--- a/
SL/GoBD.pm
+++ b/
SL/GoBD.pm
@@
-595,6
+595,8
@@
sub all_tables {
sub _normalize_cell {
$_[0] =~ s/\r\n/ /g;
$_[0] =~ s/,/;/g;
+ $_[0] =~ s/"/'/g;
+ $_[0] =~ s/!/./g;
$_[0]
}