Skip to content

Commit 19b3005

Browse files
committed
Remove piva restriction on siamm.beneficiario to fullfill procura di palermo requirements
1 parent 8b8b52d commit 19b3005

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

PyFePA/siamm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def validate(value):
6666

6767
err = ''
6868

69-
if 'beneficiario' not in value or not piva(value['beneficiario']):
69+
if 'beneficiario' not in value:
7070
err = err + 'Volore errato per beneficiario '
7171
elif 'tipopagamento' not in value or value['tipopagamento'] not in TP:
7272
err = err + 'Volore errato per tipopagamento '

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222
setup(
2323
name = 'PyFePA',
2424
packages = ['PyFePA'],
25-
version = '1.0.3',
25+
version = '1.0.4',
2626
description = 'Python object of italian FatturaPA, serialize, deserialize and verify',
2727
author = 'Luigi Di Naro',
2828
author_email = 'Luigi.DiNaro@ktec.it',
2929
url = 'https://github.com/ktecsrl/PyFePA',
30-
download_url = 'https://github.com/ktecsrl/PyFePA/tarball/1.0.3',
30+
download_url = 'https://github.com/ktecsrl/PyFePA/tarball/1.0.4',
3131
keywords = ['FatturaPA', 'financial', 'utils'],
3232
platforms= 'OSX, *unix, win',
3333
package_data = {'PyFePA' : files },

0 commit comments

Comments
 (0)