GoodERP
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

737 行
32KB

  1. from odoo import fields, models, api
  2. from odoo.exceptions import UserError
  3. from odoo.tools import float_compare
  4. import logging
  5. _logger = logging.getLogger(__name__)
  6. # 销售订单确认状态可选值
  7. SELL_ORDER_STATES = [
  8. ('draft', '草稿'),
  9. ('done', '已确认'),
  10. ('cancel', '已作废')]
  11. class SellOrder(models.Model):
  12. _name = 'sell.order'
  13. _description = '销售订单'
  14. _inherit = ['mail.thread']
  15. _order = 'date desc, id desc'
  16. @api.depends('line_ids.subtotal', 'discount_amount')
  17. def _compute_amount(self):
  18. '''当订单行和优惠金额改变时,改变成交金额'''
  19. for o in self:
  20. total = sum(line.subtotal for line in o.line_ids)
  21. o.amount = total - o.discount_amount
  22. o.untax_amount = sum(line.amount for line in o.line_ids)
  23. o.tax_amount = sum(line.tax_amount for line in o.line_ids)
  24. @api.depends('line_ids.quantity')
  25. def _compute_qty(self):
  26. '''当订单行数量改变时,更新总数量'''
  27. for o in self:
  28. o.total_qty = sum(line.quantity for line in o.line_ids)
  29. @api.depends('delivery_ids.state')
  30. def _get_sell_goods_state(selfs):
  31. '''返回发货状态'''
  32. for self in selfs:
  33. if all(line.quantity_out == 0 for line in self.line_ids):
  34. if any(r.state == 'draft' for r in self.delivery_ids) or self.state=='draft':
  35. self.goods_state = '未出库'
  36. else:
  37. self.goods_state = '全部作废'
  38. elif any(line.quantity > line.quantity_out for line in self.line_ids):
  39. if any(r.state == 'draft' for r in self.delivery_ids):
  40. self.goods_state = '部分出库'
  41. else:
  42. self.goods_state = '部分出库剩余作废'
  43. else:
  44. self.goods_state = '全部出库'
  45. @api.depends('partner_id')
  46. def _compute_currency_id(self):
  47. for o in self:
  48. self.currency_id = \
  49. self.partner_id.c_category_id.account_id.currency_id.id \
  50. or self.partner_id.s_category_id.account_id.currency_id.id
  51. @api.model
  52. def _default_warehouse(self):
  53. return self._default_warehouse_impl()
  54. @api.model
  55. def _default_warehouse_impl(self):
  56. if self.env.context.get('warehouse_type'):
  57. return self.env['warehouse'].get_warehouse_by_type(
  58. self.env.context.get('warehouse_type'))
  59. def _get_received_amount(selfs):
  60. '''计算销售订单收款/退款状态'''
  61. for self in selfs:
  62. deliverys = self.env['sell.delivery'].search(
  63. [('order_id', '=', self.id)])
  64. money_order_rows = self.env['money.order'].search([('sell_id', '=', self.id),
  65. ('reconciled', '=', 0),
  66. ('state', '=', 'done')])
  67. self.received_amount = sum([delivery.invoice_id.reconciled for delivery in deliverys]) +\
  68. sum([order_row.amount for order_row in money_order_rows])
  69. @api.depends('delivery_ids')
  70. def _compute_delivery(self):
  71. for order in self:
  72. order.delivery_count = len([deli for deli in order.delivery_ids if not deli.is_return])
  73. order.return_count = len([deli for deli in order.delivery_ids if deli.is_return])
  74. @api.depends('partner_id')
  75. def _get_sell_user(selfs):
  76. '''计算销售单据的业务员,不允许修改'''
  77. for self in selfs:
  78. if self.partner_id:
  79. if self.partner_id.responsible_id:
  80. self.user_id = self.partner_id.responsible_id
  81. else:
  82. self.user_id = self._uid
  83. @api.depends('line_ids.goods_id', 'line_ids.quantity')
  84. def _compute_net_weight(self):
  85. '''计算净重合计'''
  86. for o in self:
  87. o.net_weight = sum(
  88. line.goods_id.net_weight * line.quantity
  89. for line in o.line_ids
  90. )
  91. partner_id = fields.Many2one('partner', '客户',
  92. ondelete='restrict',
  93. help='签约合同的客户')
  94. contact = fields.Char('联系人',
  95. help='客户方的联系人')
  96. address_id = fields.Many2one('partner.address', '地址',
  97. domain="[('partner_id', '=', partner_id)]",
  98. help='联系地址')
  99. mobile = fields.Char('手机',
  100. help='联系手机')
  101. user_id = fields.Many2one(
  102. 'res.users',
  103. '销售员',
  104. ondelete='restrict',store=True,
  105. compute='_get_sell_user',
  106. help='单据经办人',
  107. )
  108. date = fields.Date('单据日期',
  109. required=True,
  110. default=lambda self: fields.Date.context_today(self),
  111. index=True,
  112. copy=False,
  113. help="默认是订单创建日期")
  114. delivery_date = fields.Date(
  115. '要求交货日期',
  116. required=True,
  117. default=lambda self: fields.Date.context_today(self),
  118. index=True,
  119. copy=False,
  120. help="订单的要求交货日期")
  121. type = fields.Selection([('sell', '销售'), ('return', '退货')], '类型',
  122. default='sell',
  123. help='销售订单的类型,分为销售或退货')
  124. ref = fields.Char('客户订单号')
  125. warehouse_id = fields.Many2one('warehouse',
  126. '调出仓库',
  127. required=True,
  128. ondelete='restrict',
  129. default=_default_warehouse,
  130. help='商品将从该仓库调出')
  131. name = fields.Char('单据编号', index=True, copy=False,
  132. default='/', help="创建时它会自动生成下一个编号")
  133. line_ids = fields.One2many('sell.order.line', 'order_id', '销售订单行',
  134. copy=True,
  135. help='销售订单的明细行,不能为空')
  136. note = fields.Text('备注', help='单据备注')
  137. discount_rate = fields.Float('优惠率(%)',
  138. help='整单优惠率')
  139. discount_amount = fields.Float('抹零',
  140. digits='Amount',
  141. help='整单优惠金额,可由优惠率自动计算出来,也可手动输入')
  142. amount = fields.Float(string='成交金额', store=True, readonly=True,
  143. compute='_compute_amount',
  144. digits='Amount',
  145. help='总金额减去优惠金额')
  146. tax_amount = fields.Float(string='税额', store=True, readonly=True,
  147. compute='_compute_amount',
  148. digits='Amount',
  149. help='税额')
  150. untax_amount = fields.Float(string='不含税金额', store=True, readonly=True,
  151. compute='_compute_amount',
  152. digits='Amount',
  153. help='不含税金额')
  154. total_qty = fields.Float(string='数量合计', store=True, readonly=True, copy=False,
  155. compute='_compute_qty',
  156. digits='Quantity',
  157. help='数量总计')
  158. pre_receipt = fields.Float('预收款',
  159. digits='Amount',
  160. help='输入预收款确认销售订单,会产生一张收款单')
  161. bank_account_id = fields.Many2one('bank.account', '结算账户',
  162. ondelete='restrict',
  163. help='用来核算和监督企业与其他单位或个人之间的债权债务的结算情况')
  164. approve_uid = fields.Many2one('res.users', '确认人', copy=False,
  165. ondelete='restrict',
  166. help='确认单据的人')
  167. state = fields.Selection(SELL_ORDER_STATES, '确认状态', readonly=True,
  168. help="销售订单的确认状态", index=True,
  169. tracking=True,
  170. copy=False, default='draft')
  171. goods_state = fields.Char('发货状态', compute=_get_sell_goods_state,
  172. default='未出库',
  173. store=True,
  174. help="销售订单的发货状态", index=True, copy=False)
  175. cancelled = fields.Boolean('已终止',
  176. help='该单据是否已终止')
  177. currency_id = fields.Many2one('res.currency',
  178. '外币币别',
  179. compute='_compute_currency_id',
  180. store=True,
  181. readonly=True,
  182. help='外币币别')
  183. pay_base_currency = fields.Boolean('以本币结算', help='客户以本币付款到我公司基本账户内')
  184. company_id = fields.Many2one(
  185. 'res.company',
  186. string='公司',
  187. change_default=True,
  188. default=lambda self: self.env.company)
  189. received_amount = fields.Float(
  190. '已收金额', compute=_get_received_amount, readonly=True)
  191. delivery_ids = fields.One2many(
  192. 'sell.delivery', 'order_id', string='发货单', copy=False)
  193. delivery_count = fields.Integer(
  194. compute='_compute_delivery', string='发货单数量', default=0)
  195. return_count = fields.Integer(
  196. compute='_compute_delivery', string='退货单数量', default=0)
  197. pay_method = fields.Many2one('pay.method',
  198. string='付款方式',
  199. ondelete='restrict')
  200. term_id = fields.Many2one('core.value', "贸易条款",
  201. domain=[('type', '=', 'price_term')],
  202. context={'type': 'price_term'}
  203. )
  204. pol = fields.Char('起运港')
  205. pod = fields.Char('目的港')
  206. express_type = fields.Char('承运商')
  207. money_order_id = fields.Many2one(
  208. 'money.order',
  209. '预收款单',
  210. readonly=True,
  211. copy=False,
  212. help='输入预收款确认时产生的预收款单')
  213. net_weight = fields.Float(
  214. string='净重合计', compute='_compute_net_weight', store=True)
  215. invoice_ids = fields.One2many(
  216. 'money.invoice', compute='_compute_invoice', string='Invoices')
  217. invoice_count = fields.Integer(
  218. compute='_compute_invoice', string='Invoices Count', default=0)
  219. details = fields.Html('明细',compute='_compute_details')
  220. paid_no_goods = fields.Boolean('已收款未发货',compute="_compute_paid_no_goods",store=True)
  221. goods_id = fields.Many2one(
  222. 'goods', related='line_ids.goods_id', string='商品') #用于在列表上根据商品搜索
  223. @api.depends('money_order_id.state','goods_state')
  224. def _compute_paid_no_goods(self):
  225. for o in self:
  226. o.paid_no_goods = False
  227. if o.state == 'done' and o.goods_state == '未出库' and o.received_amount:
  228. if not all(line.goods_id.no_stock for line in self.line_ids):
  229. o.paid_no_goods = True
  230. @api.depends('line_ids')
  231. def _compute_details(self):
  232. for v in self:
  233. vl = {'col':[],'val':[]}
  234. vl['col'] = ['商品','数量','单价','已发']
  235. for l in v.line_ids:
  236. vl['val'].append([l.goods_id.name,l.quantity,l.price,l.quantity_out])
  237. v.details = v.company_id._get_html_table(vl)
  238. @api.onchange('address_id')
  239. def onchange_partner_address(self):
  240. ''' 选择地址填充 联系人、电话 '''
  241. if self.address_id:
  242. self.contact = self.address_id.contact
  243. self.mobile = self.address_id.mobile
  244. @api.onchange('partner_id')
  245. def onchange_partner_id(self):
  246. ''' 选择客户带出其默认地址信息 '''
  247. if self.partner_id:
  248. self.contact = self.partner_id.contact
  249. self.mobile = self.partner_id.mobile
  250. self.pay_method = self.partner_id.pay_method
  251. for child in self.partner_id.child_ids:
  252. if child.is_default_add:
  253. self.address_id = child.id
  254. if self.partner_id.child_ids and not any([child.is_default_add for child in self.partner_id.child_ids]):
  255. partners_add = self.env['partner.address'].search(
  256. [('partner_id', '=', self.partner_id.id)], order='id')
  257. self.address_id = partners_add[0].id
  258. for line in self.line_ids:
  259. line.tax_rate = line.goods_id.get_tax_rate(line.goods_id, self.partner_id, 'sell')
  260. address_list = [
  261. child_list.id for child_list in self.partner_id.child_ids]
  262. if address_list:
  263. return {'domain': {'address_id': [('id', 'in', address_list)]}}
  264. else:
  265. self.address_id = False
  266. @api.onchange('discount_rate', 'line_ids')
  267. def onchange_discount_rate(self):
  268. '''当优惠率或销售订单行发生变化时,单据优惠金额发生变化'''
  269. total = sum(line.subtotal for line in self.line_ids)
  270. self.discount_amount = total * self.discount_rate * 0.01
  271. def _get_vals(self):
  272. '''返回创建 money_order 时所需数据'''
  273. flag = (self.type == 'sell' and 1 or -1) # 用来标志发库或退货
  274. amount = flag * self.amount
  275. this_reconcile = flag * self.pre_receipt
  276. money_lines = [{
  277. 'bank_id': self.bank_account_id.id,
  278. 'amount': this_reconcile,
  279. }]
  280. return {
  281. 'partner_id': self.partner_id.id,
  282. 'date': fields.Date.context_today(self),
  283. 'line_ids':
  284. [(0, 0, line) for line in money_lines],
  285. 'amount': amount,
  286. 'reconciled': this_reconcile,
  287. 'to_reconcile': amount,
  288. 'state': 'draft',
  289. 'origin_name': self.name,
  290. 'sell_id': self.id,
  291. }
  292. def generate_receipt_order(self):
  293. '''由销售订单生成收款单'''
  294. # 发库单/退货单
  295. if self.pre_receipt:
  296. money_order = self.with_context(type='get').env['money.order'].create(
  297. self._get_vals()
  298. )
  299. return money_order
  300. def sell_order_done(self):
  301. '''确认销售订单'''
  302. self.ensure_one()
  303. if self.state == 'done':
  304. raise UserError('请不要重复确认!')
  305. if not self.line_ids:
  306. raise UserError('请输入商品明细行!')
  307. for line in self.line_ids:
  308. # 检查属性是否填充,防止无权限人员不填就可以保存
  309. if line.using_attribute and not line.attribute_id:
  310. raise UserError('请输入商品:%s 的属性' % line.goods_id.name)
  311. if line.quantity <= 0 or line.price_taxed < 0:
  312. raise UserError('商品 %s 的数量和含税单价不能小于0!' % line.goods_id.name)
  313. if line.tax_amount > 0 and self.currency_id:
  314. raise UserError('外贸免税!')
  315. if not self.bank_account_id and self.pre_receipt:
  316. raise UserError('预付款不为空时,请选择结算账户!')
  317. # 销售预收款生成收款单
  318. money_order = self.generate_receipt_order()
  319. self.sell_generate_delivery()
  320. self.approve_uid = self._uid
  321. self.write({
  322. 'money_order_id': money_order and money_order.id,
  323. 'state': 'done', # 为保证审批流程顺畅,否则,未审批就可审核
  324. })
  325. return True
  326. def sell_order_draft(self):
  327. '''撤销确认销售订单'''
  328. self.ensure_one()
  329. if self.state == 'draft':
  330. raise UserError('请不要重复撤销 %s' % self._description)
  331. if any(r.state == 'done' for r in self.delivery_ids):
  332. raise UserError('该销售订单已经发货,不能撤销确认!')
  333. # 查找产生的发货单并删除
  334. self.delivery_ids.unlink()
  335. # 查找产生的收款单并删除
  336. if self.money_order_id:
  337. self.money_order_id.unlink()
  338. self.approve_uid = False
  339. self.state = 'draft'
  340. def get_delivery_line(self, line, single=False):
  341. '''返回销售发货/退货单行'''
  342. self.ensure_one()
  343. qty = 0
  344. discount_amount = 0
  345. if single:
  346. qty = 1
  347. discount_amount = line.discount_amount \
  348. / ((line.quantity - line.quantity_out) or 1)
  349. else:
  350. qty = line.quantity - line.quantity_out
  351. discount_amount = line.discount_amount
  352. return {
  353. 'type': self.type == 'sell' and 'out' or 'in',
  354. 'sell_line_id': line.id,
  355. 'goods_id': line.goods_id.id,
  356. 'attribute_id': line.attribute_id.id,
  357. 'uos_id': line.goods_id.uos_id.id,
  358. 'goods_qty': qty,
  359. 'uom_id': line.uom_id.id,
  360. 'cost_unit': line.goods_id.cost,
  361. 'price': line.price,
  362. 'price_taxed': line.price_taxed,
  363. 'discount_rate': line.discount_rate,
  364. 'discount_amount': discount_amount,
  365. 'tax_rate': line.tax_rate,
  366. 'plan_date':self.delivery_date,
  367. }
  368. def _generate_delivery(self, delivery_line):
  369. '''根据明细行生成发货单或退货单'''
  370. # 如果退货,warehouse_dest_id,warehouse_id要调换
  371. warehouse = (self.type == 'sell'
  372. and self.warehouse_id
  373. or self.env.ref("warehouse.warehouse_customer"))
  374. warehouse_dest = (self.type == 'sell'
  375. and self.env.ref("warehouse.warehouse_customer")
  376. or self.warehouse_id)
  377. rec = (self.type == 'sell' and self.with_context(is_return=False)
  378. or self.with_context(is_return=True))
  379. delivery_id = rec.env['sell.delivery'].create({
  380. 'partner_id': self.partner_id.id,
  381. 'warehouse_id': warehouse.id,
  382. 'warehouse_dest_id': warehouse_dest.id,
  383. 'user_id': self.user_id.id,
  384. 'date': self.delivery_date,
  385. 'order_id': self.id,
  386. 'ref':self.ref,
  387. 'origin': 'sell.delivery',
  388. 'discount_rate': self.discount_rate,
  389. 'discount_amount': self.discount_amount,
  390. 'currency_id': self.currency_id.id,
  391. 'contact': self.contact,
  392. 'address_id': self.address_id.id,
  393. 'mobile': self.mobile,
  394. 'express_type': self.express_type,
  395. })
  396. if self.type == 'sell':
  397. delivery_id.write({'line_out_ids': [
  398. (0, 0, line) for line in delivery_line]})
  399. else:
  400. delivery_id.write({'line_in_ids': [
  401. (0, 0, line) for line in delivery_line]})
  402. return delivery_id
  403. def sell_generate_delivery(self):
  404. '''由销售订单生成销售发货单'''
  405. self.ensure_one()
  406. delivery_line = [] # 销售发货单行
  407. for line in self.line_ids:
  408. # 如果订单部分出库,则点击此按钮时生成剩余数量的出库单
  409. to_out = line.quantity - line.quantity_out
  410. if to_out <= 0:
  411. continue
  412. if line.goods_id.force_batch_one:
  413. i = 0
  414. while i < to_out:
  415. i += 1
  416. delivery_line.append(
  417. self.get_delivery_line(line, single=True))
  418. else:
  419. delivery_line.append(
  420. self.get_delivery_line(line, single=False))
  421. if not delivery_line:
  422. return {}
  423. self._generate_delivery(delivery_line)
  424. return {}
  425. @api.depends('delivery_ids')
  426. def _compute_invoice(self):
  427. for order in self:
  428. money_invoices = self.env['money.invoice'].search([
  429. ('name', '=', order.name)])
  430. order.invoice_ids = not money_invoices and order.delivery_ids.mapped('invoice_id') or money_invoices + order.delivery_ids.mapped('invoice_id')
  431. order.invoice_count = len(order.invoice_ids.ids)
  432. def action_view_invoice(self):
  433. self.ensure_one()
  434. if self.invoice_count == 0:
  435. return False
  436. action = {
  437. 'name': '结算单(客户发票)',
  438. 'type': 'ir.actions.act_window',
  439. 'view_mode': 'form',
  440. 'res_model': 'money.invoice',
  441. 'view_id': False,
  442. 'target': 'current',
  443. }
  444. invoice_ids = self.invoice_ids.ids
  445. # choose the view_mode accordingly
  446. action['domain'] = "[('id','in',[" + \
  447. ','.join(map(str, invoice_ids)) + "])]"
  448. action['view_mode'] = 'list'
  449. return action
  450. def action_view_delivery(self):
  451. '''
  452. This function returns an action that display existing deliverys of given sells order ids.
  453. When only one found, show the delivery immediately.
  454. '''
  455. self.ensure_one()
  456. action = {
  457. 'name': '销售发货单',
  458. 'type': 'ir.actions.act_window',
  459. 'view_mode': 'form',
  460. 'res_model': 'sell.delivery',
  461. 'view_id': False,
  462. 'target': 'current',
  463. }
  464. delivery_ids = [delivery.id for delivery in self.delivery_ids if not delivery.is_return]
  465. if len(delivery_ids) > 1:
  466. action['domain'] = "[('id','in',[" + \
  467. ','.join(map(str, delivery_ids)) + "])]"
  468. action['view_mode'] = 'list,form'
  469. elif len(delivery_ids) == 1:
  470. view_id = self.env.ref('sell.sell_delivery_form').id
  471. action['views'] = [(view_id, 'form')]
  472. action['res_id'] = delivery_ids and delivery_ids[0] or False
  473. return action
  474. def action_view_return(self):
  475. '''
  476. 该销售订单对应的退货单
  477. '''
  478. self.ensure_one()
  479. action = {
  480. 'name': '销售退货单',
  481. 'type': 'ir.actions.act_window',
  482. 'view_type': 'form',
  483. 'view_mode': 'form',
  484. 'res_model': 'sell.delivery',
  485. 'view_id': False,
  486. 'target': 'current',
  487. }
  488. list_view_id = self.env.ref('sell.sell_return_list').id
  489. form_view_id = self.env.ref('sell.sell_return_form').id
  490. delivery_ids = [delivery.id for delivery in self.delivery_ids if delivery.is_return]
  491. if len(delivery_ids) > 1:
  492. action['domain'] = "[('id','in',[" + \
  493. ','.join(map(str, delivery_ids)) + "])]"
  494. action['view_mode'] = 'list,form'
  495. action['views'] = [(list_view_id, 'list'), (form_view_id, 'form')]
  496. elif len(delivery_ids) == 1:
  497. action['views'] = [(form_view_id, 'form')]
  498. action['res_id'] = delivery_ids and delivery_ids[0] or False
  499. return action
  500. class SellOrderLine(models.Model):
  501. _name = 'sell.order.line'
  502. _description = '销售订单明细'
  503. @api.depends('goods_id')
  504. def _compute_using_attribute(self):
  505. '''返回订单行中商品是否使用属性'''
  506. for l in self:
  507. l.using_attribute = l.goods_id.attribute_ids and True or False
  508. @api.depends('quantity', 'price_taxed', 'discount_amount', 'tax_rate')
  509. def _compute_all_amount(selfs):
  510. '''当订单行的数量、含税单价、折扣额、税率改变时,改变销售金额、税额、价税合计'''
  511. for self in selfs:
  512. if self.order_id.currency_id.id == self.env.user.company_id.currency_id.id:
  513. self.subtotal = self.price_taxed * self.quantity - self.discount_amount # 价税合计
  514. self.tax_amount = self.subtotal / \
  515. (100 + self.tax_rate) * self.tax_rate # 税额
  516. self.amount = self.subtotal - self.tax_amount # 金额
  517. else:
  518. rate_silent = self.env['res.currency'].get_rate_silent(
  519. self.order_id.date, self.order_id.currency_id.id) or 1
  520. if not self.order_id.pay_base_currency:
  521. rate_silent = 1
  522. self.subtotal = (self.price_taxed * self.quantity -
  523. self.discount_amount) * rate_silent # 价税合计
  524. self.tax_amount = self.subtotal / \
  525. (100 + self.tax_rate) * self.tax_rate # 税额
  526. self.amount = self.subtotal - self.tax_amount # 本位币金额
  527. @api.onchange('price', 'tax_rate')
  528. def onchange_price(self):
  529. '''当订单行的不含税单价改变时,改变含税单价。
  530. 如果将含税价改为99,则self.price计算出来为84.62,price=99/1.17,
  531. 跟84.62保留相同位数比较时是相等的,这种情况则保留含税价不变,
  532. 这样处理是为了使得修改含税价时不再重新计算含税价。
  533. '''
  534. _logger.info('单价或税率发生变化')
  535. price = self.price_taxed / (1 + self.tax_rate * 0.01) # 不含税单价
  536. decimal = self.env.ref('core.decimal_price')
  537. if float_compare(price, self.price, precision_digits=decimal.digits) != 0:
  538. self.price_taxed = self.price * (1 + self.tax_rate * 0.01)
  539. order_id = fields.Many2one('sell.order', '订单编号', index=True,
  540. required=True, ondelete='cascade',
  541. help='关联订单的编号')
  542. partner_id = fields.Many2one(
  543. 'partner',
  544. string="客户",
  545. related='order_id.partner_id',
  546. store=True)
  547. goods_id = fields.Many2one('goods',
  548. '商品',
  549. required=True,
  550. ondelete='restrict',
  551. help='商品')
  552. using_attribute = fields.Boolean('使用属性', compute=_compute_using_attribute,
  553. help='商品是否使用属性')
  554. attribute_id = fields.Many2one('attribute', '属性',
  555. ondelete='restrict',
  556. domain="[('goods_id', '=', goods_id)]",
  557. help='商品的属性,当商品有属性时,该字段必输')
  558. uom_id = fields.Many2one('uom', '单位', ondelete='restrict',
  559. help='商品计量单位')
  560. quantity = fields.Float('数量',
  561. default=1,
  562. required=True,
  563. digits='Quantity',
  564. help='下单数量')
  565. quantity_out = fields.Float('已执行数量', copy=False,
  566. digits='Quantity',
  567. help='销售订单产生的发货单/退货单已执行数量')
  568. price = fields.Float('销售单价',
  569. store=True,
  570. digits='Price',
  571. help='不含税单价,由含税单价计算得出')
  572. price_taxed = fields.Float('含税单价',
  573. digits='Price',
  574. help='含税单价,取商品零售价')
  575. discount_rate = fields.Float('折扣率%',
  576. help='折扣率')
  577. discount_amount = fields.Float('折扣额',
  578. help='输入折扣率后自动计算得出,也可手动输入折扣额')
  579. amount = fields.Float('金额',
  580. compute=_compute_all_amount,
  581. store=True,
  582. digits='Amount',
  583. help='金额 = 价税合计 - 税额')
  584. tax_rate = fields.Float('税率(%)',
  585. help='税率')
  586. tax_amount = fields.Float('税额',
  587. compute=_compute_all_amount,
  588. store=True,
  589. digits='Amount',
  590. help='税额')
  591. subtotal = fields.Float('价税合计',
  592. compute=_compute_all_amount,
  593. store=True,
  594. digits='Amount',
  595. help='含税单价 乘以 数量')
  596. note = fields.Char('备注',
  597. help='本行备注')
  598. company_id = fields.Many2one(
  599. 'res.company', string='公司',
  600. change_default=True,
  601. default=lambda self: self.env.company)
  602. # 销售订单行上增加订单的重要字段以便销售订单明细表界面可针对其筛选分组
  603. order_date = fields.Date(related='order_id.date', string='订单日期', store=True)
  604. order_state = fields.Selection(related='order_id.state', string='订单状态', store=True)
  605. order_currency = fields.Many2one('res.currency', related='order_id.currency_id', string='订单币种', store=True)
  606. quantity_todo = fields.Float(
  607. '未执行数量', compute="_compute_quantity_todo",
  608. store=True, digits='Quantity')
  609. @api.depends('quantity_out')
  610. def _compute_quantity_todo(self):
  611. for s in self:
  612. s.quantity_todo = s.quantity - s.quantity_out
  613. @api.onchange('goods_id')
  614. def onchange_warehouse_id(self):
  615. '''当订单行的仓库变化时,带出定价策略中的折扣率'''
  616. if self.order_id.warehouse_id and self.goods_id:
  617. partner = self.order_id.partner_id
  618. warehouse = self.order_id.warehouse_id
  619. goods = self.goods_id
  620. date = self.order_id.date
  621. pricing = self.env['pricing'].get_pricing_id(
  622. partner, warehouse, goods, date)
  623. if pricing:
  624. self.discount_rate = pricing.discount_rate
  625. else:
  626. self.discount_rate = 0
  627. @api.onchange('goods_id')
  628. def onchange_goods_id(self):
  629. '''当订单行的商品变化时,带出商品上的单位、默认仓库、价格、税率'''
  630. if self.goods_id:
  631. self.uom_id = self.goods_id.uom_id
  632. self.price = self.goods_id.price
  633. self.tax_rate = self.goods_id.get_tax_rate(self.goods_id, self.order_id.partner_id, 'sell')
  634. @api.onchange('quantity', 'price_taxed', 'discount_rate')
  635. def onchange_discount_rate(self):
  636. '''当数量、单价或优惠率发生变化时,优惠金额发生变化'''
  637. _logger.info('数量、含税价、折扣率发生变化')
  638. self.price = self.price_taxed / (1 + self.tax_rate * 0.01)
  639. self.discount_amount = self.quantity * self.price \
  640. * self.discount_rate * 0.01
  641. @api.constrains('tax_rate')
  642. def _check_tax_rate(selfs):
  643. for self in selfs:
  644. if self.tax_rate > 100:
  645. raise UserError('税率不能输入超过100的数!\n输入税率:%s' % self.tax_rate)
  646. if self.tax_rate < 0:
  647. raise UserError('税率不能输入负数\n 输入税率:%s' % self.tax_rate)
  648. class ApproveMultiSellOrder(models.TransientModel):
  649. _name = "approve.multi.sell.order"
  650. _description = '批量确认销售订单'
  651. def set_default_note(self):
  652. """
  653. 设置默认值, 用来确认要批量确认的订单
  654. """
  655. context = self.env.context
  656. order_names = [order.name for order in self.env['sell.order'].browse(context.get('active_ids'))]
  657. return '-'.join(order_names)
  658. note = fields.Char('本次处理销售订单', default=set_default_note, readonly=True)
  659. @api.model
  660. def fields_view_get(self, view_id=None, view_type='form', toolbar=False, submenu=False):
  661. """ 根据内容判断 报出错误 """
  662. res = super(ApproveMultiSellOrder, self).fields_view_get(view_id, view_type, toolbar=toolbar, submenu=False)
  663. orders = self.env['sell.order'].browse(self.env.context.get('active_ids'))
  664. done_lists = ''
  665. for order in orders:
  666. if order.state == 'done':
  667. done_lists += order.name
  668. if done_lists:
  669. raise UserError('销售订单 ' + done_lists + ' 已确认!')
  670. return res
  671. def approve_sell_order(self):
  672. """ 确认销售订单 """
  673. for order in self.env['sell.order'].search([('id', 'in', self.env.context.get('active_ids'))]):
  674. order.sell_order_done()
上海开阖软件有限公司 沪ICP备12045867号-1