You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
2.4 KiB
57 lines
2.4 KiB
# -*- coding: utf-8 -*-
|
|
###################################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2022-TODAY Cybrosys Technologies (<https://www.cybrosys.com>).
|
|
# Author: Afras Habis (odoo@cybrosys.com)
|
|
#
|
|
# This program is free software: you can modify
|
|
# it under the terms of the GNU Affero General Public License (AGPL) 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 details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
#
|
|
###################################################################################
|
|
|
|
from odoo import api, fields, models, _
|
|
from odoo.exceptions import ValidationError
|
|
|
|
|
|
class SelectPack(models.TransientModel):
|
|
_name = 'select.product.pack'
|
|
_rec_name = 'product_id'
|
|
_description = 'Add product pack to sale order'
|
|
|
|
product_id = fields.Many2one('product.product', string = 'Select Pack', domain = [('is_pack', '=', True)],
|
|
required = True)
|
|
quantity = fields.Integer('Quantity', default = 1, required = True)
|
|
|
|
def add_pack_order(self):
|
|
active_id = self._context.get('active_id')
|
|
if active_id:
|
|
sale_id = self.env['sale.order'].browse(active_id)
|
|
name = self.product_id.display_name
|
|
if self.product_id.description_sale:
|
|
name += '\n' + self.product_id.description_sale
|
|
self.env['sale.order.line'].create({
|
|
'product_id': self.product_id.id,
|
|
'price_unit': self.product_id.lst_price,
|
|
'product_uom': self.product_id.uom_id.id,
|
|
'product_uom_qty': self.quantity,
|
|
'order_id': sale_id.id,
|
|
'name': name,
|
|
'tax_id' : self.product_id.taxes_id.ids
|
|
})
|
|
|
|
@api.constrains('quantity')
|
|
def _check_positive_qty(self):
|
|
if any([ml.quantity < 0 for ml in self]):
|
|
raise ValidationError(_('You can not enter negative quantities.'))
|
|
|