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:
bb1c185
)
Die neuen Datenbankrestriktionen erlauben keine NULL-Werte fuer die Beschreibungen...
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Thu, 29 Sep 2005 14:18:20 +0000
(14:18 +0000)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Thu, 29 Sep 2005 14:18:20 +0000
(14:18 +0000)
SL/IC.pm
patch
|
blob
|
history
diff --git
a/SL/IC.pm
b/SL/IC.pm
index
ed74db6
..
42959fe
100644
(file)
--- a/
SL/IC.pm
+++ b/
SL/IC.pm
@@
-272,8
+272,8
@@
sub save {
$main::lxdebug->leave_sub();
return 3;
}
- $query = qq|INSERT INTO parts (partnumber)
- VALUES ('$uid')|;
+ $query = qq|INSERT INTO parts (partnumber
, description
)
+ VALUES ('$uid'
, 'dummy'
)|;
$dbh->do($query) || $form->dberror($query);
$query = qq|SELECT p.id FROM parts p