Skip to content
This repository has been archived by the owner on Feb 18, 2021. It is now read-only.

[ADD] l10n_it_dichiarazione_intento module #54

Open
wants to merge 6 commits into
base: 8.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
142 changes: 142 additions & 0 deletions l10n_it_dichiarazione_intento/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,142 @@
# Created by .ignore support plugin (hsz.mobi)
### Python template
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# dotenv
.env

# virtualenv
.venv
venv/
ENV/

# Spyder project settings
.spyderproject

# Rope project settings
.ropeproject
### JetBrains template
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

# User-specific stuff:
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/dictionaries

# Sensitive or high-churn files:
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.xml
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml

# Gradle:
.idea/**/gradle.xml
.idea/**/libraries

# Mongo Explorer plugin:
.idea/**/mongoSettings.xml

## File-based project format:
*.iws

## Plugin-specific files:

# IntelliJ
/out/

# mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
atlassian-ide-plugin.xml

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties

.idea/
1 change: 1 addition & 0 deletions l10n_it_dichiarazione_intento/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
29 changes: 29 additions & 0 deletions l10n_it_dichiarazione_intento/__openerp__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Francesco Apruzzese <f.apruzzese@apuliasoftware.it>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
'name': 'Dichiarazione Intento',
'description': """
Manage italian dichiarazione di intento""",
'version': '8.0.1.0.0',
'license': 'AGPL-3',
'author': 'Francesco Apruzzese',
'website': 'http://www.apuliasoftware.it',
'depends': [
'account',
'sale',
'l10n_it',
],
'data': [
'views/sale_view.xml',
'views/account_view.xml',
'views/dichiarazione_intento_view.xml',
'views/company_view.xml',
'views/account_invoice_view.xml',
'data/sequence.xml',
'security/ir.model.access.csv',
],
'installable': True,
'auto_install': False,
}
18 changes: 18 additions & 0 deletions l10n_it_dichiarazione_intento/data/sequence.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data noupdate="1">

<record id="seq_type_dichiarazione_intento" model="ir.sequence.type">
<field name="name">Dichiarazione Intento</field>
<field name="code">dichiarazione.intento.seq</field>
</record>

<record id="seq_dichiarazione_intento" model="ir.sequence">
<field name="name">Dichiarazione Intento sequence</field>
<field name="code">dichiarazione.intento.seq</field>
<field eval="1" name="number_next"/>
<field eval="1" name="number_increment"/>
</record>

</data>
</openerp>
Loading