~sale-core-editors/sale-financial/github-6.1

« back to all changes in this revision

Viewing changes to sale_markup/mrp_markup.py

  • Committer: unknown
  • Date: 2012-11-16 08:15:11 UTC
  • Revision ID: git-v1:6b11360603ed04156d3c3a374b31f1a20c4aae4c
[DEL] Remove a file that is a result of a replay errors when moving our modules

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- coding: utf-8 -*-
2
 
##############################################################################
3
 
#
4
 
#    Author: Yannick Vaucher
5
 
#    Copyright 2012 Camptocamp SA
6
 
#
7
 
#    This program is free software: you can redistribute it and/or modify
8
 
#    it under the terms of the GNU Affero General Public License as
9
 
#    published by the Free Software Foundation, either version 3 of the
10
 
#    License, or (at your option) any later version.
11
 
#
12
 
#    This program is distributed in the hope that it will be useful,
13
 
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
#    GNU Affero General Public License for more details.
16
 
#
17
 
#    You should have received a copy of the GNU Affero General Public License
18
 
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
 
#
20
 
##############################################################################
21
 
from osv.orm import Model
22
 
 
23
 
 
24
 
class MrpBoM(Model):
25
 
    _inherit = 'mrp.bom'
26
 
 
27
 
    def _limit_produced_product_number(self, cursor, user, ids, context=None):
28
 
        """Add a constraint of to limit qty of product to 1 on BOM"""
29
 
        context = context or {}
30
 
        bom = self.browse(cursor, user, ids[0])
31
 
        if bom.product_qty != 1 and bom.bom_lines:
32
 
            return False
33
 
        return True
34
 
 
35
 
 
36
 
 
37
 
    _constraints = [(_limit_produced_product_number,
38
 
                     "sale_markup module doesn't allow you to have a"
39
 
                     "bom with product qty > 1.",
40
 
                     ['product_qty', 'bom_lines'])]