GoodERP
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

102 lignes
4.7KB

  1. from odoo import models, fields, api
  2. from odoo.exceptions import UserError
  3. class Location(models.Model):
  4. _name = 'location'
  5. _description = '库位'
  6. _order = 'name'
  7. def _get_current_qty(self):
  8. # 获取当前 库位 的商品数量
  9. for Location in self:
  10. lines = self.env['wh.move.line'].search([('goods_id', '=', Location.goods_id.id),
  11. ('attribute_id', '=',
  12. Location.attribute_id.id),
  13. ('warehouse_dest_id', '=',
  14. Location.warehouse_id.id),
  15. ('location_id',
  16. '=', Location.id),
  17. ('state', '=', 'done')])
  18. Location.current_qty = sum([line.qty_remaining for line in lines])
  19. Location.write({'save_qty': Location.current_qty})
  20. if Location.current_qty == 0:
  21. Location.write({'goods_id': False, 'attribute_id': False})
  22. name = fields.Char('库位号',
  23. required=True)
  24. warehouse_id = fields.Many2one('warehouse',
  25. string='仓库',
  26. required=True)
  27. goods_id = fields.Many2one('goods',
  28. '商品')
  29. attribute_id = fields.Many2one('attribute', '属性', ondelete='restrict',
  30. help='商品的属性')
  31. current_qty = fields.Integer('数量',
  32. compute='_get_current_qty'
  33. )
  34. save_qty = fields.Float('在手数量')
  35. _sql_constraints = [
  36. ('wh_loc_uniq', 'unique(warehouse_id, name)', '同仓库库位不能重名')
  37. ]
  38. def change_location(self):
  39. for Location in self:
  40. view = self.env.ref('warehouse.change_location_form')
  41. return {
  42. 'name': '库位',
  43. 'view_mode': 'form',
  44. 'res_model': 'change.location',
  45. 'view_id': False,
  46. 'views': [(view.id, 'form')],
  47. 'type': 'ir.actions.act_window',
  48. 'target': 'new',
  49. 'context': {'default_from_location': Location.id},
  50. }
  51. class ChangeLocation(models.TransientModel):
  52. _name = 'change.location'
  53. _description = '库位转移'
  54. from_location = fields.Many2one('location', string='源库位', required=True)
  55. to_location = fields.Many2one('location', string='目的库位', required=True)
  56. change_qty = fields.Float('转出数量')
  57. def confirm_change(self):
  58. for change in self:
  59. if change.change_qty <= 0.0:
  60. raise UserError('转出数量必须大于零')
  61. if change.from_location.id == change.to_location.id:
  62. raise UserError('转出库位 %s 与转入库位不能相同' %
  63. change.from_location.name)
  64. if change.from_location.current_qty < change.change_qty:
  65. raise UserError('转出数量不能大于库位现有数量,库位 %s 现有数量 %s'
  66. % (change.from_location.name, change.from_location.current_qty))
  67. # 转出库位与转入库位的 产品、产品属性要相同
  68. if (change.from_location.goods_id.id != change.to_location.goods_id.id and change.to_location.goods_id.id) or \
  69. (change.from_location.attribute_id.id != change.to_location.attribute_id.id and change.to_location.attribute_id.id):
  70. raise UserError('请检查转出库位与转入库位的产品、产品属性是否都相同!')
  71. # 创建 内部移库单
  72. wh_internal = self.env['wh.internal'].with_context({'location': change.from_location.id}).create({
  73. 'warehouse_id': change.from_location.warehouse_id.id,
  74. 'warehouse_dest_id': change.to_location.warehouse_id.id,
  75. })
  76. self.env['wh.move.line'].with_context({'type': 'internal'}).create({
  77. 'move_id': wh_internal.move_id.id,
  78. 'goods_id': change.from_location.goods_id.id,
  79. 'attribute_id': change.from_location.attribute_id.id,
  80. 'goods_qty': change.change_qty,
  81. 'location_id': change.to_location.id,
  82. })
  83. # 自动审核 内部移库单
  84. wh_internal.approve_order()
  85. # 返回 更新产品数量后的 库位列表
  86. return {
  87. 'type': 'ir.actions.client',
  88. 'tag': 'reload',
  89. }
上海开阖软件有限公司 沪ICP备12045867号-1