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.

256 lignes
12KB

  1. # Copyright 2016 上海开阖软件有限公司 (http://www.osbzr.com)
  2. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
  3. from odoo import fields, models, api
  4. from odoo.exceptions import UserError
  5. from odoo.tools import float_compare
  6. # 订单确认状态可选值
  7. BUY_ORDER_STATES = [
  8. ('draft', '草稿'),
  9. ('done', '已确认'),
  10. ('cancel', '已作废')]
  11. # 字段只读状态
  12. READONLY_STATES = {
  13. 'done': [('readonly', True)],
  14. 'cancel': [('readonly', True)],
  15. }
  16. class BuyAdjust(models.Model):
  17. _name = "buy.adjust"
  18. _inherit = ['mail.thread']
  19. _description = "采购变更单"
  20. _order = 'date desc, id desc'
  21. name = fields.Char('单据编号', copy=False,
  22. help='变更单编号,保存时可自动生成')
  23. order_id = fields.Many2one('buy.order', '原始单据',
  24. copy=False, ondelete='restrict',
  25. help='要调整的原始采购订单,只能调整已确认且没有全部入库的采购订单')
  26. date = fields.Date('单据日期',
  27. default=lambda self: fields.Date.context_today(self),
  28. index=True, copy=False,
  29. help='变更单创建日期,默认是当前日期')
  30. line_ids = fields.One2many('buy.adjust.line', 'order_id', '变更单行',
  31. copy=True,
  32. help='变更单明细行,不允许为空')
  33. approve_uid = fields.Many2one('res.users', '确认人',
  34. copy=False, ondelete='restrict',
  35. help='确认变更单的人')
  36. state = fields.Selection(BUY_ORDER_STATES, '确认状态',
  37. index=True, copy=False,
  38. default='draft',
  39. help='变更单确认状态')
  40. note = fields.Text('备注',
  41. help='单据备注')
  42. user_id = fields.Many2one(
  43. 'res.users',
  44. '经办人',
  45. ondelete='restrict',
  46. default=lambda self: self.env.user,
  47. help='单据经办人',
  48. )
  49. company_id = fields.Many2one(
  50. 'res.company',
  51. string='公司',
  52. change_default=True,
  53. default=lambda self: self.env.company)
  54. def _get_vals(self, line):
  55. '''返回创建 buy order line 时所需数据'''
  56. return {
  57. 'order_id': self.order_id.id,
  58. 'goods_id': line.goods_id.id,
  59. 'attribute_id': line.attribute_id.id,
  60. 'quantity': line.quantity,
  61. 'uom_id': line.uom_id.id,
  62. 'price_taxed': line.price_taxed,
  63. 'discount_rate': line.discount_rate,
  64. 'discount_amount': line.discount_amount,
  65. 'tax_rate': line.tax_rate,
  66. 'note': line.note or '',
  67. }
  68. def buy_adjust_done(self):
  69. '''确认采购变更单:
  70. 当调整后数量 < 原单据中已入库数量,则报错;
  71. 当调整后数量 > 原单据中已入库数量,则更新原单据及入库单分单的数量;
  72. 当调整后数量 = 原单据中已入库数量,则更新原单据数量,删除入库单行;
  73. 当新增商品时,则更新原单据及入库单分单明细行。
  74. '''
  75. self.ensure_one()
  76. if self.state == 'done':
  77. raise UserError('请不要重复确认!\n采购变更单%s已确认' % self.name)
  78. if not self.line_ids:
  79. raise UserError('请输入商品明细行!')
  80. for line in self.line_ids:
  81. if line.price_taxed < 0:
  82. raise UserError('商品含税单价不能小于0!\n单价:%s' % line.price_taxed)
  83. buy_receipt = self.env['buy.receipt'].search(
  84. [('order_id', '=', self.order_id.id),
  85. ('state', '=', 'draft')])
  86. if not buy_receipt:
  87. raise UserError('采购入库单已全部入库,不能调整')
  88. for line in self.line_ids:
  89. # 检查属性是否填充,防止无权限人员不填就可以保存
  90. if line.using_attribute and not line.attribute_id:
  91. raise UserError('请输入商品:%s 的属性' % line.goods_id.name)
  92. origin_line = self.env['buy.order.line'].search(
  93. [('goods_id', '=', line.goods_id.id),
  94. ('attribute_id', '=', line.attribute_id.id),
  95. ('order_id', '=', self.order_id.id)])
  96. if len(origin_line) > 1:
  97. raise UserError('要调整的商品%s在原始单据中不唯一' % line.goods_id.name)
  98. if origin_line:
  99. origin_line.quantity += line.quantity # 调整后数量
  100. new_note = '变更单:%s %s。\n' % (self.name, line.note)
  101. origin_line.note = (origin_line.note and
  102. origin_line.note + new_note or new_note)
  103. if origin_line.quantity < origin_line.quantity_in:
  104. raise UserError('%s调整后数量不能小于原订单已入库数量' %
  105. line.goods_id.name)
  106. elif origin_line.quantity > origin_line.quantity_in:
  107. # 查找出原采购订单产生的草稿状态的入库单明细行,并更新它
  108. move_line = self.env['wh.move.line'].search(
  109. [('buy_line_id', '=', origin_line.id),
  110. ('state', '=', 'draft')])
  111. if move_line:
  112. move_line.goods_qty += line.quantity
  113. else:
  114. raise UserError('商品%s已全部入库,建议新建采购订单' %
  115. line.goods_id.name)
  116. # 调整后数量与已入库数量相等时,删除产生的入库单分单
  117. else:
  118. # 删除对应行
  119. move_line = self.env['wh.move.line'].search(
  120. [('buy_line_id', '=', origin_line.id),
  121. ('state', '=', 'draft')])
  122. move_line.unlink()
  123. else:
  124. new_line = self.env['buy.order.line'].create(
  125. self._get_vals(line))
  126. receipt_line = []
  127. if line.goods_id.force_batch_one:
  128. i = 0
  129. while i < line.quantity:
  130. i += 1
  131. receipt_line.append(
  132. self.order_id.get_receipt_line(new_line, single=True))
  133. else:
  134. receipt_line.append(
  135. self.order_id.get_receipt_line(new_line, single=False))
  136. buy_receipt.write(
  137. {'line_in_ids': [(0, 0, li) for li in receipt_line]})
  138. if not buy_receipt.line_in_ids:
  139. buy_receipt.unlink()
  140. self.state = 'done'
  141. self.approve_uid = self._uid
  142. class BuyAdjustLine(models.Model):
  143. _name = 'buy.adjust.line'
  144. _description = '采购变更单明细'
  145. @api.depends('goods_id')
  146. def _compute_using_attribute(selfs):
  147. '''返回订单行中商品是否使用属性'''
  148. for self in selfs:
  149. self.using_attribute = self.goods_id.attribute_ids and True or False
  150. @api.depends('quantity', 'price_taxed', 'discount_amount', 'tax_rate')
  151. def _compute_all_amount(selfs):
  152. '''当订单行的数量、单价、折扣额、税率改变时,改变采购金额、税额、价税合计'''
  153. for self in selfs:
  154. self.subtotal = self.price_taxed * self.quantity - self.discount_amount # 价税合计
  155. self.tax_amount = self.subtotal / \
  156. (100 + self.tax_rate) * self.tax_rate # 税额
  157. self.amount = self.subtotal - self.tax_amount # 金额
  158. @api.onchange('price', 'tax_rate')
  159. def onchange_price(self):
  160. '''当订单行的不含税单价改变时,改变含税单价'''
  161. price = self.price_taxed / (1 + self.tax_rate * 0.01) # 不含税单价
  162. decimal = self.env.ref('core.decimal_price')
  163. if float_compare(price, self.price, precision_digits=decimal.digits) != 0:
  164. self.price_taxed = self.price * (1 + self.tax_rate * 0.01)
  165. order_id = fields.Many2one('buy.adjust', '订单编号', index=True,
  166. required=True, ondelete='cascade',
  167. help='关联的变更单编号')
  168. goods_id = fields.Many2one('goods', '商品', ondelete='restrict',
  169. help='商品')
  170. using_attribute = fields.Boolean('使用属性', compute=_compute_using_attribute,
  171. help='商品是否使用属性')
  172. attribute_id = fields.Many2one('attribute', '属性',
  173. ondelete='restrict',
  174. domain="[('goods_id', '=', goods_id)]",
  175. help='商品的属性,当商品有属性时,该字段必输')
  176. uom_id = fields.Many2one('uom', '单位', ondelete='restrict',
  177. help='商品计量单位')
  178. quantity = fields.Float('调整数量',
  179. default=1,
  180. required=True,
  181. digits='Quantity',
  182. help='相对于原单据对应明细行的调整数量,可正可负')
  183. price = fields.Float('采购单价',
  184. store=True,
  185. digits='Price',
  186. help='不含税单价,由含税单价计算得出')
  187. price_taxed = fields.Float('含税单价',
  188. digits='Price',
  189. help='含税单价,取自商品成本')
  190. discount_rate = fields.Float('折扣率%',
  191. help='折扣率')
  192. discount_amount = fields.Float('折扣额',
  193. digits='Amount',
  194. help='输入折扣率后自动计算得出,也可手动输入折扣额')
  195. amount = fields.Float('金额', compute=_compute_all_amount,
  196. store=True, readonly=True,
  197. digits='Amount',
  198. help='金额 = 价税合计 - 税额')
  199. tax_rate = fields.Float('税率(%)', default=lambda self: self.env.user.company_id.import_tax_rate,
  200. help='默认值取公司进项税率')
  201. tax_amount = fields.Float('税额', compute=_compute_all_amount,
  202. store=True, readonly=True,
  203. digits='Amount',
  204. help='由税率计算得出')
  205. subtotal = fields.Float('价税合计', compute=_compute_all_amount,
  206. store=True, readonly=True,
  207. digits='Amount',
  208. help='含税单价 乘以 数量')
  209. note = fields.Char('备注',
  210. help='本行备注')
  211. company_id = fields.Many2one(
  212. 'res.company',
  213. string='公司',
  214. change_default=True,
  215. default=lambda self: self.env.company)
  216. @api.onchange('goods_id')
  217. def onchange_goods_id(self):
  218. '''当订单行的商品变化时,带出商品上的单位、默认仓库、成本价'''
  219. if self.goods_id:
  220. self.uom_id = self.goods_id.uom_id
  221. self.price_taxed = self.goods_id.cost
  222. self.tax_rate = self.goods_id.get_tax_rate(self.goods_id, self.order_id.order_id.partner_id, 'buy')
  223. @api.onchange('quantity', 'price_taxed', 'discount_rate')
  224. def onchange_discount_rate(self):
  225. '''当数量、单价或优惠率发生变化时,优惠金额发生变化'''
  226. self.price = self.price_taxed / (1 + self.tax_rate * 0.01)
  227. self.discount_amount = (self.quantity * self.price *
  228. self.discount_rate * 0.01)
  229. @api.constrains('tax_rate')
  230. def _check(selfs):
  231. for self in selfs:
  232. if self.tax_rate > 100:
  233. raise UserError('税率不能输入超过100的数\n税率:%s!' % self.tax_rate)
  234. if self.tax_rate < 0:
  235. raise UserError('税率不能输入负数\n税率:%s!' % self.tax_rate)
上海开阖软件有限公司 沪ICP备12045867号-1