GoodERP
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.

620 lines
27KB

  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. import datetime
  6. from odoo.tools import float_compare, float_is_zero
  7. # 字段只读状态
  8. READONLY_STATES = {
  9. 'done': [('readonly', True)],
  10. }
  11. ISODATEFORMAT = '%Y-%m-%d'
  12. class BuyReceipt(models.Model):
  13. _name = "buy.receipt"
  14. _inherits = {'wh.move': 'buy_move_id'}
  15. _inherit = ['mail.thread']
  16. _description = "采购入库单"
  17. _order = 'date desc, id desc'
  18. @api.depends('line_in_ids.subtotal', 'discount_amount',
  19. 'payment', 'line_out_ids.subtotal', 'delivery_fee')
  20. def _compute_all_amount(selfs):
  21. '''当优惠金额改变时,改变成交金额'''
  22. for self in selfs:
  23. total = 0
  24. if self.line_in_ids:
  25. # 入库时优惠前总金额
  26. total = sum(line.subtotal for line in self.line_in_ids)
  27. elif self.line_out_ids:
  28. # 退货时优惠前总金额
  29. total = sum(line.subtotal for line in self.line_out_ids)
  30. self.amount = total - self.discount_amount + self.delivery_fee
  31. @api.depends('is_return', 'invoice_id.reconciled', 'invoice_id.amount')
  32. def _get_buy_money_state(selfs):
  33. '''返回付款状态'''
  34. for self in selfs:
  35. if not self.is_return:
  36. if self.invoice_id.reconciled == 0:
  37. self.money_state = '未付款'
  38. elif self.invoice_id.reconciled < self.invoice_id.amount:
  39. self.money_state = '部分付款'
  40. elif self.invoice_id.reconciled == self.invoice_id.amount:
  41. self.money_state = '全部付款'
  42. # 返回退款状态
  43. if self.is_return:
  44. if self.invoice_id.reconciled == 0:
  45. self.return_state = '未退款'
  46. elif abs(self.invoice_id.reconciled) < abs(self.invoice_id.amount):
  47. self.return_state = '部分退款'
  48. elif self.invoice_id.reconciled == self.invoice_id.amount:
  49. self.return_state = '全部退款'
  50. buy_move_id = fields.Many2one('wh.move', '入库单',
  51. required=True, ondelete='cascade',
  52. help='入库单号')
  53. is_return = fields.Boolean('是否退货',
  54. default=lambda self: self.env.context.get(
  55. 'is_return'),
  56. help='是否为退货类型')
  57. order_id = fields.Many2one('buy.order', '订单号',
  58. copy=False, ondelete='cascade',
  59. help='产生入库单/退货单的采购订单')
  60. invoice_id = fields.Many2one('money.invoice', '发票号', copy=False,
  61. ondelete='set null',
  62. help='产生的发票号')
  63. date_due = fields.Date('到期日期', copy=False,
  64. default=lambda self: fields.Date.context_today(
  65. self),
  66. help='付款截止日期')
  67. discount_rate = fields.Float('优惠率(%)',
  68. help='整单优惠率')
  69. discount_amount = fields.Float('优惠金额',
  70. digits='Amount',
  71. help='整单优惠金额,可由优惠率自动计算得出,也可手动输入')
  72. invoice_by_receipt = fields.Boolean(string="按收货结算", default=True,
  73. help='如未勾选此项,可在资金行里输入付款金额,订单保存后,采购人员可以单击资金行上的【确认】按钮。')
  74. amount = fields.Float('成交金额', compute=_compute_all_amount,
  75. store=True, readonly=True,
  76. digits='Amount',
  77. help='总金额减去优惠金额')
  78. payment = fields.Float('本次付款',
  79. digits='Amount',
  80. help='本次付款金额')
  81. bank_account_id = fields.Many2one('bank.account', '结算账户',
  82. ondelete='restrict',
  83. help='用来核算和监督企业与其他单位或个人之间的债权债务的结算情况')
  84. cost_line_ids = fields.One2many('cost.line', 'buy_id', '采购费用', copy=False,
  85. help='采购费用明细行')
  86. money_state = fields.Char('付款状态', compute=_get_buy_money_state,
  87. store=True, default='未付款',
  88. help="采购入库单的付款状态",
  89. index=True, copy=False)
  90. return_state = fields.Char('退款状态', compute=_get_buy_money_state,
  91. store=True, default='未退款',
  92. help="采购退货单的退款状态",
  93. index=True, copy=False)
  94. voucher_id = fields.Many2one('voucher', '入库凭证', readonly=True,
  95. copy=False,
  96. help='入库时产生的入库凭证')
  97. origin_id = fields.Many2one('buy.receipt', '来源单据', copy=False)
  98. currency_id = fields.Many2one('res.currency',
  99. '外币币别',
  100. help='外币币别')
  101. currency_rate = fields.Float('汇率', digits='Price')
  102. delivery_fee = fields.Float('运费')
  103. money_order_id = fields.Many2one(
  104. 'money.order',
  105. '付款单',
  106. readonly=True,
  107. copy=False,
  108. help='输入本次付款确认时产生的付款单')
  109. def set_today(self):
  110. self.date = fields.Date.today()
  111. def _compute_total(self, line_ids):
  112. return sum(line.subtotal for line in line_ids)
  113. @api.onchange('discount_rate', 'line_in_ids', 'line_out_ids')
  114. def onchange_discount_rate(self):
  115. '''当优惠率或订单行发生变化时,单据优惠金额发生变化'''
  116. line = self.line_in_ids or self.line_out_ids
  117. total = self._compute_total(line)
  118. if self.discount_rate:
  119. self.discount_amount = total * self.discount_rate * 0.01
  120. @api.onchange('partner_id')
  121. def onchange_partner_id(self):
  122. if self.partner_id:
  123. for line in self.line_in_ids:
  124. line.tax_rate = line.goods_id.get_tax_rate(line.goods_id, self.partner_id, 'buy')
  125. def get_move_origin(self, vals):
  126. return self._name + (self.env.context.get('is_return') and
  127. '.return' or '.buy')
  128. @api.model_create_multi
  129. def create(self, vals_list):
  130. '''创建采购入库单时生成有序编号'''
  131. if not self.env.context.get('is_return'):
  132. name = self._name
  133. else:
  134. name = 'buy.return'
  135. for vals in vals_list:
  136. if vals.get('name', '/') == '/':
  137. vals['name'] = self.env['ir.sequence'].next_by_code(name) or '/'
  138. vals.update({
  139. 'origin': self.get_move_origin(vals),
  140. 'finance_category_id': self.env.ref('finance.categ_buy_goods').id,
  141. })
  142. return super(BuyReceipt, self).create(vals_list)
  143. def unlink(self):
  144. for receipt in self:
  145. receipt.buy_move_id.unlink()
  146. def _wrong_receipt_done(self):
  147. self.ensure_one()
  148. if self.state == 'done':
  149. raise UserError('请不要重复入库')
  150. batch_one_list_wh = []
  151. batch_one_list = []
  152. for line in self.line_in_ids:
  153. if line.amount < 0:
  154. raise UserError('采购金额不能小于 0!请修改。')
  155. if line.goods_id.force_batch_one:
  156. wh_move_lines = self.env['wh.move.line'].search(
  157. [('state', '=', 'done'), ('type', '=', 'in'), ('goods_id', '=', line.goods_id.id)])
  158. for move_line in wh_move_lines:
  159. if (move_line.goods_id.id, move_line.lot) not in batch_one_list_wh and move_line.lot:
  160. batch_one_list_wh.append(
  161. (move_line.goods_id.id, move_line.lot))
  162. if (line.goods_id.id, line.lot) in batch_one_list_wh:
  163. raise UserError('仓库已存在相同序列号的商品!\n商品:%s 序列号:%s' %
  164. (line.goods_id.name, line.lot))
  165. for line in self.line_in_ids:
  166. if line.goods_qty <= 0 or line.price_taxed < 0:
  167. raise UserError('商品 %s 的数量和含税单价不能小于0!' % line.goods_id.name)
  168. if line.goods_id.force_batch_one:
  169. batch_one_list.append((line.goods_id.id, line.lot))
  170. if len(batch_one_list) > len(set(batch_one_list)):
  171. raise UserError('不能创建相同序列号的商品!\n 序列号列表为%s' %
  172. [lot[1] for lot in batch_one_list])
  173. for line in self.line_out_ids:
  174. if line.amount < 0:
  175. raise UserError('退货金额不能小于 0!请修改。')
  176. if line.goods_qty <= 0 or line.price_taxed < 0:
  177. raise UserError('商品 %s 的数量和含税单价不能小于0!' % line.goods_id.name)
  178. if not self.bank_account_id and self.payment:
  179. raise UserError('付款额不为空时,请选择结算账户!')
  180. decimal_amount = self.env.ref('core.decimal_amount')
  181. if float_compare(self.payment, self.amount, precision_digits=decimal_amount.digits) == 1:
  182. raise UserError('本次付款金额不能大于折后金额!\n付款金额:%s 折后金额:%s' %
  183. (self.payment, self.amount))
  184. if float_compare(sum(cost_line.amount for cost_line in self.cost_line_ids),
  185. sum(line.share_cost for line in self.line_in_ids),
  186. precision_digits=decimal_amount.digits) != 0:
  187. raise UserError('采购费用还未分摊或分摊不正确!\n采购费用:%s 分摊总费用:%s' %
  188. (sum(cost_line.amount for cost_line in self.cost_line_ids),
  189. sum(line.share_cost for line in self.line_in_ids)))
  190. return
  191. def _line_qty_write(self):
  192. self.ensure_one()
  193. if self.order_id:
  194. for line in self.line_in_ids:
  195. decimal_quantity = self.env.ref('core.decimal_quantity')
  196. if float_compare(
  197. line.buy_line_id.quantity_in + line.goods_qty,
  198. line.buy_line_id.quantity,
  199. decimal_quantity.digits) == 1:
  200. if not line.goods_id.excess:
  201. raise UserError('%s收货数量大于订单数量' % line.goods_id.name)
  202. line.buy_line_id.quantity_in += line.goods_qty
  203. for line in self.line_out_ids: # 退货单行
  204. if self.order_id.type == 'return': # 退货类型的buy_order生成的采购退货单审核
  205. line.buy_line_id.quantity_in += line.goods_qty
  206. else:
  207. line.buy_line_id.quantity_in -= line.goods_qty
  208. return
  209. def _get_invoice_vals(self, partner_id, category_id, date, amount, tax_amount):
  210. '''返回创建 money_invoice 时所需数据'''
  211. return {
  212. 'move_id': self.buy_move_id.id,
  213. 'name': self.name,
  214. 'partner_id': partner_id.id,
  215. 'pay_method': self.order_id.pay_method.id or partner_id.pay_method.id,
  216. 'currency_id': partner_id.s_category_id.account_id.currency_id.id,
  217. 'category_id': category_id.id,
  218. 'date': date,
  219. 'amount': amount,
  220. 'reconciled': 0,
  221. 'to_reconcile': amount,
  222. 'tax_amount': tax_amount,
  223. 'date_due': self.date_due,
  224. 'state': 'draft',
  225. }
  226. def _receipt_make_invoice(self):
  227. '''入库单/退货单 生成结算单'''
  228. invoice_id = False
  229. if not self.is_return:
  230. if not self.invoice_by_receipt:
  231. return False
  232. amount = 0
  233. tax_amount = 0
  234. for line in self.line_in_ids:
  235. amount += line.price_taxed * line.goods_qty
  236. tax_amount += line.tax_amount
  237. # amount = sum(line.price_taxed * line.goods_qty
  238. # for line in self.line_in_ids)
  239. # tax_amount = sum(line.tax_amount for line in self.line_in_ids)
  240. else:
  241. amount = -self.amount
  242. tax_amount = - sum(line.tax_amount for line in self.line_out_ids)
  243. categ = self.env.ref('money.core_category_purchase')
  244. if not float_is_zero(amount, 2):
  245. invoice_id = self.env['money.invoice'].create(
  246. self._get_invoice_vals(
  247. self.partner_id, categ, self.date, amount, tax_amount)
  248. )
  249. return invoice_id
  250. def _buy_amount_to_invoice(self):
  251. '''采购费用产生结算单'''
  252. self.ensure_one()
  253. if sum(cost_line.amount for cost_line in self.cost_line_ids) > 0:
  254. for line in self.cost_line_ids:
  255. if not float_is_zero(line.amount, 2):
  256. self.env['money.invoice'].create(
  257. self._get_invoice_vals(line.partner_id, line.category_id, self.date, line.amount + line.tax,
  258. line.tax)
  259. )
  260. return
  261. def _make_payment(self, invoice_id, amount, this_reconcile):
  262. '''根据传入的invoice_id生成付款单'''
  263. categ = self.env.ref('money.core_category_purchase')
  264. money_lines = [
  265. {'bank_id': self.bank_account_id.id, 'amount': this_reconcile}]
  266. source_lines = [{'name': invoice_id.id,
  267. 'category_id': categ.id,
  268. 'date': invoice_id.date,
  269. 'amount': amount,
  270. 'reconciled': 0.0,
  271. 'to_reconcile': amount,
  272. 'this_reconcile': this_reconcile}]
  273. rec = self.with_context(type='pay')
  274. money_order = rec.env['money.order'].create({
  275. 'partner_id': self.partner_id.id,
  276. 'bank_name': self.partner_id.bank_name,
  277. 'bank_num': self.partner_id.bank_num,
  278. 'date': fields.Date.context_today(self),
  279. 'line_ids':
  280. [(0, 0, line) for line in money_lines],
  281. 'source_ids':
  282. [(0, 0, line) for line in source_lines] if invoice_id.state == 'done' else False,
  283. 'amount': amount,
  284. 'reconciled': this_reconcile,
  285. 'to_reconcile': amount,
  286. 'state': 'draft',
  287. 'origin_name': self.name,
  288. 'buy_id': self.order_id.id,
  289. })
  290. return money_order
  291. def _create_voucher_line(self, account_id, debit, credit, voucher_id, goods_id, goods_qty, partner_id):
  292. '''返回voucher line'''
  293. voucher = self.env['voucher.line'].create({
  294. 'name': '%s %s' % (self.name, ''),
  295. 'account_id': account_id and account_id.id,
  296. 'partner_id': partner_id and partner_id.id,
  297. 'debit': debit,
  298. 'credit': credit,
  299. 'voucher_id': voucher_id and voucher_id.id,
  300. 'goods_id': goods_id and goods_id.id,
  301. 'goods_qty': goods_qty,
  302. })
  303. return voucher
  304. def create_voucher(self):
  305. '''
  306. 借: 商品分类对应的会计科目 一般是库存商品
  307. 贷:类型为支出的类别对应的会计科目 一般是材料采购
  308. 当一张入库单有多个商品的时候,按对应科目汇总生成多个借方凭证行。
  309. 采购退货单生成的金额为负
  310. '''
  311. self.ensure_one()
  312. vouch_id = self.env['voucher'].create({'date': self.date, 'ref': '%s,%s' % (self._name, self.id)})
  313. sum_amount = 0
  314. if not self.is_return:
  315. for line in self.line_in_ids:
  316. if line.amount:
  317. # 借方明细
  318. self._create_voucher_line(line.goods_id.category_id.account_id,
  319. line.amount + line.share_cost, 0, vouch_id, line.goods_id, line.goods_qty,
  320. False)
  321. sum_amount += line.amount
  322. if sum_amount:
  323. # 贷方明细
  324. self._create_voucher_line(self.buy_move_id.finance_category_id.account_id,
  325. 0, sum_amount, vouch_id, False, 0, self.partner_id)
  326. for l in self.cost_line_ids:
  327. self._create_voucher_line(self.buy_move_id.finance_category_id.account_id,
  328. 0, l.amount, vouch_id, False, 0, l.partner_id)
  329. if self.is_return:
  330. for line in self.line_out_ids:
  331. if line.amount:
  332. # 借方明细
  333. self._create_voucher_line(line.goods_id.category_id.account_id,
  334. -line.amount, 0, vouch_id, line.goods_id, line.goods_qty, False)
  335. sum_amount += line.amount
  336. if sum_amount:
  337. # 贷方明细
  338. self._create_voucher_line(self.buy_move_id.finance_category_id.account_id,
  339. 0, -sum_amount, vouch_id, False, 0, self.partner_id)
  340. if len(vouch_id.line_ids) > 0:
  341. vouch_id.voucher_done()
  342. return vouch_id
  343. else:
  344. vouch_id.unlink()
  345. def multi_currency_rate(self):
  346. if self.currency_rate:
  347. for l in self.line_in_ids:
  348. l.price = l.buy_line_id.price * self.currency_rate
  349. l.onchange_price()
  350. l.cost = l.price * l.goods_qty - l.discount_amount + l.share_cost
  351. def buy_receipt_done(self):
  352. '''审核采购入库单/退货单,更新本单的付款状态/退款状态,并生成结算单和付款单'''
  353. self.ensure_one()
  354. # 入库单/退货单 生成结算单
  355. invoice_id = self._receipt_make_invoice()
  356. self.multi_currency_rate()
  357. self._wrong_receipt_done()
  358. # 调用wh.move中审核方法,更新审核人和审核状态
  359. self.buy_move_id.approve_order()
  360. # 将收货/退货数量写入订单行
  361. self._line_qty_write()
  362. # 创建入库的会计凭证
  363. voucher = self.create_voucher()
  364. # 采购费用产生结算单
  365. self._buy_amount_to_invoice()
  366. # 生成付款单
  367. money_order = False
  368. if self.payment:
  369. flag = not self.is_return and 1 or -1
  370. amount = flag * self.amount
  371. this_reconcile = flag * self.payment
  372. money_order = self._make_payment(invoice_id, amount, this_reconcile)
  373. self.write({
  374. 'voucher_id': voucher and voucher.id,
  375. 'invoice_id': invoice_id and invoice_id.id,
  376. 'money_order_id': money_order and money_order.id,
  377. 'state': 'done', # 为保证审批流程顺畅,否则,未审批就可审核
  378. })
  379. if self.order_id:
  380. # 如果已退货也已退款,不生成新的分单
  381. if self.is_return and self.payment:
  382. return True
  383. #产生新的入库单时,如果已经存在草稿的入库单时,先将已经存在的草稿进行删除
  384. self.env['buy.receipt'].search(['&', ('state', '=', 'draft'), '&', ('order_id', '=', self.order_id.id),
  385. ('is_return', '=', False)]).unlink()
  386. return self.order_id.buy_generate_receipt()
  387. def buy_receipt_draft(self):
  388. '''反审核采购入库单/退货单,更新本单的付款状态/退款状态,并删除生成的结算单、付款单及凭证'''
  389. self.ensure_one()
  390. if self.state == 'draft':
  391. raise UserError('请不要重复撤销 %s' % self._description)
  392. # 查找产生的结算单(除了供应商的发票还有可能是采购费用发票)
  393. invoice_ids = self.env['money.invoice'].search([('name', '=', self.name)])
  394. for invoice in invoice_ids:
  395. # 不能反审核已核销的发货单
  396. if invoice.reconciled != 0:
  397. raise UserError('发票已核销,不能撤销入库!')
  398. if invoice.state == 'done':
  399. if self.env.company.draft_invoice:
  400. raise UserError('发票已收不可撤销入库')
  401. invoice.money_invoice_draft()
  402. invoice.unlink()
  403. # 反审核采购入库单时删除对应的入库凭证
  404. voucher = self.voucher_id
  405. if voucher.state == 'done':
  406. voucher.voucher_draft()
  407. voucher.unlink()
  408. self.write({
  409. 'state': 'draft',
  410. })
  411. # 修改订单行中已执行数量
  412. if self.order_id:
  413. for line in self.line_in_ids:
  414. line.buy_line_id.quantity_in -= line.goods_qty
  415. for line in self.line_out_ids:
  416. if self.order_id.type == 'return':
  417. line.buy_line_id.quantity_in -= line.goods_qty
  418. else:
  419. line.buy_line_id.quantity_in += line.goods_qty
  420. # 调用wh.move中反审核方法,更新审核人和审核状态
  421. self.buy_move_id.cancel_approved_order()
  422. def buy_share_cost(self):
  423. '''入库单上的采购费用分摊到入库单明细行上'''
  424. self.ensure_one()
  425. total_amount = 0
  426. for line in self.line_in_ids:
  427. total_amount += line.amount
  428. cost = sum(cost_line.amount for cost_line in self.cost_line_ids)
  429. for line in self.line_in_ids:
  430. line.share_cost = cost / total_amount * line.amount
  431. share_cost = sum(line.share_cost for line in self.line_in_ids)
  432. diff_cost = cost - share_cost
  433. self.line_in_ids[0].share_cost = self.line_in_ids[0].share_cost + diff_cost
  434. return True
  435. def buy_to_return(self):
  436. '''采购入库单转化为采购退货单'''
  437. return_goods = {}
  438. return_order_draft = self.search([
  439. ('is_return', '=', True),
  440. ('origin_id', '=', self.id),
  441. ('state', '=', 'draft')
  442. ])
  443. if return_order_draft:
  444. raise UserError('采购入库单存在草稿状态的退货单!')
  445. return_order = self.search([
  446. ('is_return', '=', True),
  447. ('origin_id', '=', self.id),
  448. ('state', '=', 'done')
  449. ])
  450. for order in return_order:
  451. for return_line in order.line_out_ids:
  452. # 用产品、属性、批次做key记录已退货数量
  453. t_key = (return_line.goods_id.id,
  454. return_line.attribute_id.id, return_line.lot_id.lot)
  455. if return_goods.get(t_key):
  456. return_goods[t_key] += return_line.goods_qty
  457. else:
  458. return_goods[t_key] = return_line.goods_qty
  459. receipt_line = []
  460. for line in self.line_in_ids:
  461. qty = line.goods_qty
  462. l_key = (line.goods_id.id, line.attribute_id.id, line.lot)
  463. if return_goods.get(l_key):
  464. qty = qty - return_goods[l_key]
  465. if qty > 0:
  466. dic = {
  467. 'goods_id': line.goods_id.id,
  468. 'attribute_id': line.attribute_id.id,
  469. 'uom_id': line.uom_id.id,
  470. 'warehouse_id': line.warehouse_dest_id.id,
  471. 'warehouse_dest_id': line.warehouse_id.id,
  472. 'buy_line_id': line.buy_line_id.id,
  473. 'goods_qty': qty,
  474. 'price_taxed': line.price_taxed,
  475. 'price': line.price,
  476. 'tax_rate': line.tax_rate,
  477. 'cost_unit': line.cost_unit,
  478. 'discount_rate': line.discount_rate,
  479. 'discount_amount': line.discount_amount,
  480. 'type': 'out'
  481. }
  482. receipt_line.append(dic)
  483. if len(receipt_line) == 0:
  484. raise UserError('该订单已全部退货!')
  485. vals = {'partner_id': self.partner_id.id,
  486. 'is_return': True,
  487. 'order_id': self.order_id.id,
  488. 'origin_id': self.id,
  489. 'origin': 'buy.receipt.return',
  490. 'warehouse_dest_id': self.warehouse_id.id,
  491. 'warehouse_id': self.warehouse_dest_id.id,
  492. 'bank_account_id': self.bank_account_id.id,
  493. 'date_due': (datetime.datetime.now()).strftime(ISODATEFORMAT),
  494. 'date': (datetime.datetime.now()).strftime(ISODATEFORMAT),
  495. 'line_out_ids': [(0, 0, line) for line in receipt_line],
  496. 'discount_amount': self.discount_amount,
  497. }
  498. delivery_return = self.with_context(is_return=True).create(vals)
  499. view_id = self.env.ref('buy.buy_return_form').id
  500. name = '采购退货单'
  501. return {
  502. 'name': name,
  503. 'view_mode': 'form',
  504. 'view_id': False,
  505. 'views': [(view_id, 'form')],
  506. 'res_model': 'buy.receipt',
  507. 'type': 'ir.actions.act_window',
  508. 'res_id': delivery_return.id,
  509. 'target': 'current'
  510. }
  511. class WhMoveLine(models.Model):
  512. _inherit = 'wh.move.line'
  513. buy_line_id = fields.Many2one('buy.order.line',
  514. '采购单行', ondelete='cascade',
  515. help='对应的采购订单行')
  516. def _buy_get_price_and_tax(self):
  517. self.tax_rate = self.env.user.company_id.import_tax_rate
  518. self.price_taxed = self.goods_id.cost
  519. order_id = self.buy_line_id and self.buy_line_id.order_id.id or self.env.context.get('order_id')
  520. if order_id:
  521. line_domain = [
  522. ('order_id', '=', order_id),
  523. ('goods_id', '=', self.goods_id.id)
  524. ]
  525. # 如果行有属性,添加进搜索条件
  526. if self.attribute_id:
  527. line_domain.append(('attribute_id', '=', self.attribute_id.id))
  528. else:
  529. pass
  530. line = self.env['buy.order.line'].search(line_domain, limit=1)
  531. if line:
  532. self.buy_line_id = line.id
  533. self.uos_id = line.goods_id.uos_id.id
  534. self.uom_id = line.uom_id.id
  535. self.cost_unit = line.price
  536. self.price = line.price
  537. self.price_taxed = line.price_taxed
  538. self.discount_rate = line.discount_rate
  539. self.tax_rate = line.tax_rate
  540. self.plan_date = line.order_id.planned_date
  541. else:
  542. raise UserError('无此商品的订单行')
  543. @api.onchange('attribute_id')
  544. def onchange_attribute_id(self):
  545. '''当订单行的商品属性变化时,计算准确的采购订单行'''
  546. self.ensure_one()
  547. if self.attribute_id:
  548. self._buy_get_price_and_tax()
  549. @api.onchange('goods_id')
  550. def onchange_goods_id(self):
  551. '''当订单行的商品变化时,带出商品上的成本价,以及公司的进项税'''
  552. self.ensure_one()
  553. if self.goods_id:
  554. is_return = self.env.context.get('default_is_return')
  555. # 如果是采购入库单行 或 采购退货单行
  556. if is_return is not None and \
  557. ((self.type == 'in' and not is_return) or (self.type == 'out' and is_return)):
  558. self._buy_get_price_and_tax()
  559. return super(WhMoveLine, self).onchange_goods_id()
上海开阖软件有限公司 沪ICP备12045867号-1