Skip to content

Commit

Permalink
modif vat limit (#1786)
Browse files Browse the repository at this point in the history
  • Loading branch information
danila12 authored Oct 1, 2024
1 parent be0045a commit 6d897b5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ addon | version | maintainers | summary | price
[deltatech_watermark_report](deltatech_watermark_report/) | 14.0.1.0.0 | [![dhongu](https:/dhongu.png?size=30px)](https:/dhongu) | Watermark in report | Free
[deltatech_website_access_design](deltatech_website_access_design/) | 14.0.1.0.1 | [![dhongu](https:/dhongu.png?size=30px)](https:/dhongu) | Access for web designer | Free
[deltatech_website_authentication_request](deltatech_website_authentication_request/) | 14.0.1.0.0 | [![dhongu](https:/dhongu.png?size=30px)](https:/dhongu) | Authentication request | Free
[deltatech_website_billing_addresses](deltatech_website_billing_addresses/) | 14.0.1.2.6 | [![dhongu](https:/dhongu.png?size=30px)](https:/dhongu) | Website Billing Addresses | 100.0 EUR
[deltatech_website_billing_addresses](deltatech_website_billing_addresses/) | 14.0.1.2.7 | [![dhongu](https:/dhongu.png?size=30px)](https:/dhongu) | Website Billing Addresses | 100.0 EUR
[deltatech_website_breadcrumb](deltatech_website_breadcrumb/) | 14.0.1.0.0 | [![dhongu](https:/dhongu.png?size=30px)](https:/dhongu) | eCommerce extension Category Breadcrumb | Free
[deltatech_website_category](deltatech_website_category/) | 14.0.1.0.0 | [![dhongu](https:/dhongu.png?size=30px)](https:/dhongu) | Public category | Free
[deltatech_website_category_snippet](deltatech_website_category_snippet/) | 14.0.1.0.0 | [![dhongu](https:/dhongu.png?size=30px)](https:/dhongu) | eCommerce extension Category Snippet | Free
Expand Down
2 changes: 1 addition & 1 deletion deltatech_website_billing_addresses/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Website Billing Addresses
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:4b397e3d827ffbf4ff71ed2029ecd43cc76b3f651c408b5a72c09ee09be4ff53
!! source digest: sha256:1c480ef9fb4ef7e3049b5f6d9b3fe5a1747eb596715ddc8f44caaf23666004a5
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
Expand Down
2 changes: 1 addition & 1 deletion deltatech_website_billing_addresses/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"name": "Website Billing Addresses",
"category": "Website/Website",
"summary": "Website Billing Addresses",
"version": "14.0.1.2.6",
"version": "14.0.1.2.7",
"author": "Terrabit, Dorin Hongu",
"license": "AGPL-3",
"website": "https://www.terrabit.ro",
Expand Down
2 changes: 1 addition & 1 deletion deltatech_website_billing_addresses/controllers/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def values_postprocess(self, order, mode, values, errors, error_msg):
if vat:
vat = vat.strip()
vat = vat.replace("-", "")
if len(vat) < 6:
if len(vat) < 5:
errors["vat"] = "Vat invalid"
error_msg.append("CUI invalid. Daca nu sunteti o firma, va rugam creati o adresa de persoana fizica")
is_company = values.get("is_company", False) == "yes"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ <h1 class="title">Website Billing Addresses</h1>
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:4b397e3d827ffbf4ff71ed2029ecd43cc76b3f651c408b5a72c09ee09be4ff53
!! source digest: sha256:1c480ef9fb4ef7e3049b5f6d9b3fe5a1747eb596715ddc8f44caaf23666004a5
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https:/dhongu/deltatech/tree/14.0/deltatech_website_billing_addresses"><img alt="dhongu/deltatech" src="https://img.shields.io/badge/github-dhongu%2Fdeltatech-lightgray.png?logo=github" /></a></p>
<dl class="docutils">
Expand Down

0 comments on commit 6d897b5

Please sign in to comment.