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.

187 lines
8.5 KiB

  1. # -*- coding: utf-8 -*-
  2. from odoo import models, fields, api
  3. from odoo.tools.translate import _
  4. from odoo.exceptions import UserError, ValidationError
  5. import uuid
  6. class BeesdooProduct(models.Model):
  7. _inherit = "product.template"
  8. eco_label = fields.Many2one('beesdoo.product.label', domain=[('type', '=', 'eco')])
  9. local_label = fields.Many2one('beesdoo.product.label', domain=[('type', '=', 'local')])
  10. fair_label = fields.Many2one('beesdoo.product.label', domain=[('type', '=', 'fair')])
  11. origin_label = fields.Many2one('beesdoo.product.label', domain=[('type', '=', 'delivery')])
  12. main_seller_id = fields.Many2one('res.partner', string='Main Seller', compute='_compute_main_seller_id', store=True)
  13. display_unit = fields.Many2one('product.uom')
  14. default_reference_unit = fields.Many2one('product.uom')
  15. display_weight = fields.Float(compute='_get_display_weight', store=True)
  16. total_with_vat = fields.Float(compute='_get_total', store=True, string="Total Sales Price with VAT")
  17. total_with_vat_by_unit = fields.Float(compute='_get_total', store=True, string="Total Sales Price with VAT by Reference Unit")
  18. total_deposit = fields.Float(compute='_get_total', store=True, string="Deposit Price")
  19. label_to_be_printed = fields.Boolean('Print label?')
  20. label_last_printed = fields.Datetime('Label last printed on')
  21. note = fields.Text('Comments')
  22. # S0023 : List_price = Price HTVA, so add a suggested price
  23. list_price = fields.Float(string='exVAT Price')
  24. suggested_price = fields.Float(string='Suggested exVAT Price', compute='_compute_cost', readOnly=True)
  25. deadline_for_sale = fields.Integer(string="Deadline for sale(days)")
  26. deadline_for_consumption = fields.Integer(string="Deadline for consumption(days)")
  27. ingredients = fields.Char(string="Ingredient")
  28. scale_label_info_1 = fields.Char(string="Scale lable info 1")
  29. scale_label_info_2 = fields.Char(string="Scale lable info 2")
  30. scale_sale_unit = fields.Char(compute="_get_scale_sale_uom", string="Scale sale unit", store=True)
  31. scale_category = fields.Many2one('beesdoo.scale.category', string="Scale Category")
  32. scale_category_code = fields.Integer(related='scale_category.code', string="Scale category code", readonly=True, store=True)
  33. @api.depends('uom_id','uom_id.category_id','uom_id.category_id.type')
  34. @api.multi
  35. def _get_scale_sale_uom(self):
  36. for product in self:
  37. if product.uom_id.category_id.type == 'unit':
  38. product.scale_sale_unit = 'F'
  39. elif product.uom_id.category_id.type == 'weight':
  40. product.scale_sale_unit = 'P'
  41. def _get_main_supplier_info(self):
  42. suppliers = self.seller_ids.sorted(
  43. key=lambda seller: seller.date_start,
  44. reverse=True)
  45. if suppliers:
  46. return suppliers[0]
  47. else:
  48. return suppliers
  49. @api.one
  50. def generate_barcode(self):
  51. if self.to_weight:
  52. seq_internal_code = self.env.ref('beesdoo_product.seq_ean_product_internal_ref')
  53. bc = ''
  54. if not self.default_code:
  55. rule = self.env['barcode.rule'].search([('name', '=', 'Price Barcodes (Computed Weight) 2 Decimals')])[0]
  56. default_code = seq_internal_code.next_by_id()
  57. while(self.search_count([('default_code', '=', default_code)]) > 1):
  58. default_code = seq_internal_code.next_by_id()
  59. self.default_code = default_code
  60. ean = '02' + self.default_code[0:5] + '000000'
  61. bc = ean[0:12] + str(self.env['barcode.nomenclature'].ean_checksum(ean))
  62. else:
  63. rule = self.env['barcode.rule'].search([('name', '=', 'Beescoop Product Barcodes')])[0]
  64. size = 13 - len(rule.pattern)
  65. ean = rule.pattern + str(uuid.uuid4().fields[-1])[:size]
  66. bc = ean[0:12] + str(self.env['barcode.nomenclature'].ean_checksum(ean))
  67. # Make sure there is no other active member with the same barcode
  68. while(self.search_count([('barcode', '=', bc)]) > 1):
  69. ean = rule.pattern + str(uuid.uuid4().fields[-1])[:size]
  70. bc = ean[0:12] + str(self.env['barcode.nomenclature'].ean_checksum(ean))
  71. print 'barcode :', bc
  72. self.barcode = bc
  73. @api.one
  74. @api.depends('seller_ids', 'seller_ids.date_start')
  75. def _compute_main_seller_id(self):
  76. # Calcule le vendeur associé qui a la date de début la plus récente et plus petite qu’aujourd’hui
  77. sellers_ids = self._get_main_supplier_info() # self.seller_ids.sorted(key=lambda seller: seller.date_start, reverse=True)
  78. self.main_seller_id = sellers_ids and sellers_ids[0].name or False
  79. @api.one
  80. @api.depends('taxes_id', 'list_price', 'taxes_id.amount',
  81. 'taxes_id.tax_group_id', 'total_with_vat',
  82. 'display_weight', 'weight')
  83. def _get_total(self):
  84. consignes_group = self.env.ref('beesdoo_product.consignes_group_tax',
  85. raise_if_not_found=False)
  86. taxes_included = set(self.taxes_id.mapped('price_include'))
  87. if len(taxes_included) == 0:
  88. self.total_with_vat = self.list_price
  89. return True
  90. elif len(taxes_included) > 1:
  91. raise ValidationError('Several tax strategies (price_include) defined for %s' % self.name)
  92. elif taxes_included.pop():
  93. self.total_with_vat = self.list_price
  94. self.total_deposit = sum([tax._compute_amount(self.list_price, self.list_price) for tax in self.taxes_id if tax.tax_group_id == consignes_group])
  95. else:
  96. tax_amount_sum = sum([tax._compute_amount(self.list_price, self.list_price)
  97. for tax in self.taxes_id
  98. if tax.tax_group_id != consignes_group])
  99. self.total_with_vat = self.list_price + tax_amount_sum
  100. self.total_deposit = sum([tax._compute_amount(self.list_price, self.list_price)
  101. for tax in self.taxes_id
  102. if tax.tax_group_id == consignes_group])
  103. if self.display_weight > 0:
  104. self.total_with_vat_by_unit = self.total_with_vat / self.weight
  105. @api.one
  106. @api.depends('weight', 'display_unit')
  107. def _get_display_weight(self):
  108. self.display_weight = self.weight * self.display_unit.factor
  109. @api.one
  110. @api.constrains('display_unit', 'default_reference_unit')
  111. def _unit_same_category(self):
  112. if self.display_unit.category_id != self.default_reference_unit.category_id:
  113. raise UserError(_('Reference Unit and Display Unit should belong to the same category'))
  114. @api.one
  115. @api.depends('seller_ids')
  116. def _compute_cost(self):
  117. suppliers = self._get_main_supplier_info()
  118. if(len(suppliers) > 0):
  119. self.suggested_price = (suppliers[0].price * self.uom_po_id.factor)* (1 + suppliers[0].product_tmpl_id.categ_id.profit_margin / 100)
  120. class BeesdooScaleCategory(models.Model):
  121. _name = "beesdoo.scale.category"
  122. name = fields.Char(string="Scale name category")
  123. code = fields.Integer(string="Category code")
  124. _sql_constraints = [
  125. ('code_scale_categ_uniq', 'unique (code)', 'The code of the scale category must be unique !')
  126. ]
  127. class BeesdooProductLabel(models.Model):
  128. _name = "beesdoo.product.label"
  129. name = fields.Char()
  130. type = fields.Selection([('eco', 'Écologique'), ('local', 'Local'), ('fair', 'Équitable'), ('delivery', 'Distribution')])
  131. color_code = fields.Char()
  132. active = fields.Boolean(default=True)
  133. class BeesdooProductCategory(models.Model):
  134. _inherit = "product.category"
  135. profit_margin = fields.Float(default = '10.0', string = "Product Margin [%]")
  136. @api.one
  137. @api.constrains('profit_margin')
  138. def _check_margin(self):
  139. if (self.profit_margin < 0.0):
  140. raise UserError(_('Percentages for Profit Margin must > 0.'))
  141. class BeesdooProductSupplierInfo(models.Model):
  142. _inherit = "product.supplierinfo"
  143. price = fields.Float('exVAT Price')
  144. class BeesdooUOMCateg(models.Model):
  145. _inherit = 'product.uom.categ'
  146. type = fields.Selection([('unit','Unit'),
  147. ('weight','Weight'),
  148. ('time','Time'),
  149. ('distance','Distance'),
  150. ('surface','Surface'),
  151. ('volume','Volume'),
  152. ('other','Other')],string='Category type',default='unit')