Commit cd3e6d89 authored by Jérome Perrin's avatar Jérome Perrin

fix typo in 'payment_uid'


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@6116 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 1826e015
...@@ -107,10 +107,10 @@ if section_category :\n ...@@ -107,10 +107,10 @@ if section_category :\n
# Special filtering for GL\n # Special filtering for GL\n
# XXX this script could also be used for entity / bank account ?\n # XXX this script could also be used for entity / bank account ?\n
MARKER = []\n MARKER = []\n
payment_uid = kw.get(\'source_uid\', MARKER)\n payment_uid = kw.get(\'payment_uid\', MARKER)\n
if payment_uid is not MARKER:\n if payment_uid is not MARKER:\n
kwd[\'payment_uid\'] = payment_uid\n kwd[\'payment_uid\'] = payment_uid\n
no_payment_uid = kw.get(\'no_source_uid\', MARKER)\n no_payment_uid = kw.get(\'no_payment_uid\', MARKER)\n
if no_payment_uid is not MARKER:\n if no_payment_uid is not MARKER:\n
kwd[\'no_payment_uid\'] = 1\n kwd[\'no_payment_uid\'] = 1\n
\n \n
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment