Skip to content

Commit

Permalink
Remove piva restriction on siamm.beneficiario to fullfill procura di …
Browse files Browse the repository at this point in the history
…palermo requirements
  • Loading branch information
gigidn committed Jan 29, 2016
1 parent 8b8b52d commit 19b3005
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion PyFePA/siamm.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def validate(value):

err = ''

if 'beneficiario' not in value or not piva(value['beneficiario']):
if 'beneficiario' not in value:
err = err + 'Volore errato per beneficiario '
elif 'tipopagamento' not in value or value['tipopagamento'] not in TP:
err = err + 'Volore errato per tipopagamento '
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
setup(
name = 'PyFePA',
packages = ['PyFePA'],
version = '1.0.3',
version = '1.0.4',
description = 'Python object of italian FatturaPA, serialize, deserialize and verify',
author = 'Luigi Di Naro',
author_email = '[email protected]',
url = 'https://github.com/ktecsrl/PyFePA',
download_url = 'https://github.com/ktecsrl/PyFePA/tarball/1.0.3',
download_url = 'https://github.com/ktecsrl/PyFePA/tarball/1.0.4',
keywords = ['FatturaPA', 'financial', 'utils'],
platforms= 'OSX, *unix, win',
package_data = {'PyFePA' : files },
Expand Down

0 comments on commit 19b3005

Please sign in to comment.