Skip to content

Commit

Permalink
Merge pull request #9 from yvaucher/8.0-logistic_requistion_budget
Browse files Browse the repository at this point in the history
[8.0] port module logistic_requistion_budget
  • Loading branch information
lepistone committed Nov 3, 2014
2 parents 5d27e3a + bac9393 commit e55651c
Show file tree
Hide file tree
Showing 15 changed files with 194 additions and 418 deletions.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Author: Romain Deheele
# Copyright 2014 Camptocamp SA
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more description.
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
#
from . import model
from . import wizard
Original file line number Diff line number Diff line change
@@ -1,25 +1,23 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Author: Joël Grand-Guillaume, Jacques-Etienne Baudoux, Guewen Baconnier
# Copyright 2013 Camptocamp SA
# Author: Joël Grand-Guillaume, Jacques-Etienne Baudoux, Guewen Baconnier
# Copyright 2013-2014 Camptocamp SA
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more description.
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################

{"name": "Logistic Requisition Budget",
#
{"name": "Logistic Budget",
"version": "0.1",
"author": "Camptocamp",
"license": "AGPL-3",
Expand All @@ -28,10 +26,10 @@
"images": [],
"website": "http://www.camptocamp.com",
"description": """
This logisitc requisiton budget
===============================
Logisitic budget
================
This module add a notion of budget on logistic requisition.
This module adds a notion of budget on logistic requisition.
Each requisition lines have now a budget holder and a budget Value.
Requisiton must be approves by budget manager.
Expand All @@ -44,10 +42,12 @@
],
"demo": [],
"data": ["view/logistic_requisition.xml",
"report/logistic_requisition_report.xml",
"view/report_logistic_requisition.xml",
],
"auto_install": False,
# TODO one test is disabled due to a bug with field functions odoo#3422
# to reactivate once fixed
"test": ['test/requisition_create_cost_estimate.yml',
],
'installable': False,
'installable': True,
}
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,23 +1,21 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Author: Joël Grand-Guillaume, Jacques-Etienne Baudoux, Guewen Baconnier,
# Romain Deheele
# Copyright 2013 Camptocamp SA
# Author: Joël Grand-Guillaume, Jacques-Etienne Baudoux, Guewen Baconnier,
# Romain Deheele
# Copyright 2013-2014 Camptocamp SA
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more description.
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################

#
from . import logistic_requisition

0 comments on commit e55651c

Please sign in to comment.