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

630 行
27KB

  1. # Copyright 2016 上海开阖软件有限公司 (http://www.osbzr.com)
  2. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
  3. from odoo.exceptions import UserError, ValidationError
  4. from odoo import fields, models, api
  5. from odoo.tools import float_compare, float_is_zero
  6. class MoneyOrder(models.Model):
  7. _name = 'money.order'
  8. _description = "收付款单"
  9. _inherit = ['mail.thread', 'mail.activity.mixin']
  10. _order = 'id desc'
  11. TYPE_SELECTION = [
  12. ('pay', '付款'),
  13. ('get', '收款'),
  14. ]
  15. @api.model_create_multi
  16. def create(self, vals_list):
  17. # 创建单据时,根据订单类型的不同,生成不同的单据编号
  18. for values in vals_list:
  19. if self.env.context.get('type') == 'pay':
  20. values.update(
  21. {'name': self.env['ir.sequence'].next_by_code('pay.order')})
  22. else:
  23. values.update(
  24. {'name': self.env['ir.sequence'].next_by_code('get.order')})
  25. # 创建时查找该业务伙伴是否存在 未审核 状态下的收付款单
  26. orders = self.env['money.order'].search([
  27. ('partner_id', '=', values.get('partner_id')),
  28. ('state', '=', 'draft'),
  29. ('source_ids', '!=', False),
  30. ('id', '!=', self.id)])
  31. if values.get('source_ids') and orders:
  32. raise UserError('该业务伙伴存在未确认的收/付款单,请先确认')
  33. return super(MoneyOrder, self).create(vals_list)
  34. def write(self, values):
  35. # 修改时查找该业务伙伴是否存在 未审核 状态下的收付款单
  36. if values.get('partner_id'):
  37. orders = self.env['money.order'].search([
  38. ('partner_id', '=', values.get('partner_id')),
  39. ('state', '=', 'draft'),
  40. ('id', '!=', self.id)])
  41. if orders:
  42. raise UserError('业务伙伴(%s)存在未审核的收/付款单,请先审核' %
  43. orders.partner_id.name)
  44. return super(MoneyOrder, self).write(values)
  45. @api.depends('discount_amount',
  46. 'line_ids.amount',
  47. 'source_ids.this_reconcile')
  48. def _compute_advance_payment(self):
  49. """
  50. 计算字段advance_payment(本次预收)
  51. """
  52. for mo in self:
  53. amount, this_reconcile = 0.0, 0.0
  54. for line in mo.line_ids:
  55. amount += line.amount
  56. for line in mo.source_ids:
  57. this_reconcile += line.this_reconcile
  58. if mo.type == 'get':
  59. mo.advance_payment = \
  60. amount - this_reconcile + mo.discount_amount
  61. else:
  62. mo.advance_payment = \
  63. amount - this_reconcile - mo.discount_amount
  64. mo.amount = amount
  65. @api.depends('partner_id', 'type')
  66. def _compute_currency_id(self):
  67. """
  68. 取出币别
  69. :return:
  70. """
  71. for mo in self:
  72. partner_currency_id = (mo.type == 'get') \
  73. and mo.partner_id.c_category_id.account_id.currency_id.id \
  74. or mo.partner_id.s_category_id.account_id.currency_id.id
  75. mo.currency_id = \
  76. partner_currency_id or mo.env.user.company_id.currency_id.id
  77. state = fields.Selection([
  78. ('draft', '草稿'),
  79. ('done', '已完成'),
  80. ('cancel', '已作废'),
  81. ], string='状态', readonly=True, default='draft', copy=False, index=True,
  82. help='收/付款单状态标识,新建时状态为草稿;确认后状态为已完成')
  83. partner_id = fields.Many2one('partner', string='往来单位', required=True,
  84. ondelete='restrict',
  85. help='该单据对应的业务伙伴,单据确认时会影响他的应收应付余额')
  86. date = fields.Date(string='单据日期',
  87. default=lambda self: fields.Date.context_today(self),
  88. help='单据创建日期')
  89. name = fields.Char(string='单据编号', copy=False, readonly=True,
  90. help='单据编号,创建时会根据类型自动生成')
  91. note = fields.Text(string='备注', help='可以为该单据添加一些需要的标识信息')
  92. currency_id = fields.Many2one(
  93. 'res.currency',
  94. '币别',
  95. compute='_compute_currency_id',
  96. store=True,
  97. readonly=True,
  98. tracking=True,
  99. help='业务伙伴的类别科目上对应的外币币别')
  100. discount_amount = fields.Float(string='我方承担费用',
  101. readonly=False,
  102. digits='Amount',
  103. help='收/付款时发生的银行手续费或给业务伙伴的现金折扣。')
  104. discount_account_id = fields.Many2one(
  105. 'finance.account', '费用科目',
  106. domain="[('account_type','=','normal')]",
  107. readonly=False,
  108. help='收/付款单确认生成凭证时,手续费或折扣对应的科目')
  109. line_ids = fields.One2many('money.order.line', 'money_id',
  110. string='收/付款单行',
  111. help='收/付款单明细行')
  112. source_ids = fields.One2many('source.order.line', 'money_id',
  113. string='待核销行',
  114. help='收/付款单待核销行')
  115. type = fields.Selection(TYPE_SELECTION, string='类型',
  116. default=lambda self: self.env.context.get('type'),
  117. help='类型:收款单 或者 付款单')
  118. amount = fields.Float(string='总金额', compute='_compute_advance_payment',
  119. digits='Amount',
  120. store=True, readonly=True,
  121. help='收/付款单行金额总和')
  122. advance_payment = fields.Float(
  123. string='本次预付',
  124. compute='_compute_advance_payment',
  125. digits='Amount',
  126. store=True, readonly=True,
  127. help='根据收/付款单行金额总和,原始单据行金额总和及折扣额计算得来的预收/预付款,值>=0')
  128. to_reconcile = fields.Float(string='未核销金额',
  129. digits='Amount',
  130. help='未核销的预收/预付款金额')
  131. reconciled = fields.Float(string='已核销金额',
  132. digits='Amount',
  133. help='已核销的预收/预付款金额')
  134. origin_name = fields.Char('原始单据编号',
  135. help='原始单据编号')
  136. bank_name = fields.Char('开户行',
  137. help='开户行取自业务伙伴,可修改')
  138. bank_num = fields.Char('银行账号',
  139. help='银行账号取自业务伙伴,可修改')
  140. approve_uid = fields.Many2one('res.users', '确认人',
  141. copy=False, ondelete='restrict')
  142. approve_date = fields.Datetime('确认日期', copy=False)
  143. company_id = fields.Many2one(
  144. 'res.company',
  145. string='公司',
  146. change_default=True,
  147. default=lambda self: self.env.company)
  148. voucher_id = fields.Many2one('voucher',
  149. '对应凭证',
  150. readonly=True,
  151. ondelete='restrict',
  152. copy=False,
  153. help='收/付款单确认时生成的对应凭证')
  154. def create_reconcile(self):
  155. self.ensure_one()
  156. if self.env['money.invoice'].search([
  157. ('partner_id', '=', self.partner_id.id),
  158. ('state', '=', 'done'),
  159. ('to_reconcile', '!=', 0),
  160. ], limit=1):
  161. if self.type == 'get':
  162. business_type = 'adv_pay_to_get'
  163. else:
  164. business_type = 'adv_get_to_pay'
  165. recon = self.env['reconcile.order'].create({
  166. 'partner_id': self.partner_id.id,
  167. 'business_type': business_type})
  168. recon.onchange_partner_id()
  169. action = {
  170. 'name': '核销单',
  171. 'type': 'ir.actions.act_window',
  172. 'view_mode': 'form',
  173. 'res_model': 'reconcile.order',
  174. 'res_id': recon.id,
  175. }
  176. return action
  177. else:
  178. raise UserError('没有未核销结算单')
  179. def write_off_reset(self):
  180. """
  181. 单据审核前重置计算单行上的本次核销金额
  182. :return:
  183. """
  184. self.ensure_one()
  185. if self.state != 'draft':
  186. raise ValueError('已确认的单据不能执行这个操作')
  187. for source in self.source_ids:
  188. source.this_reconcile = 0
  189. return True
  190. @api.onchange('date')
  191. def onchange_date(self):
  192. """
  193. 当修改日期时,则根据context中的money的type对客户添加过滤,过滤出是供应商还是客户。
  194. (因为date有默认值所以这个过滤是默认触发的) 其实和date是否变化没有关系,页面加载就触发下面的逻辑
  195. :return:
  196. """
  197. if self.env.context.get('type') == 'get':
  198. return {'domain': {'partner_id': [('c_category_id', '!=', False)]}}
  199. else:
  200. return {'domain': {'partner_id': [('s_category_id', '!=', False)]}}
  201. def _get_source_line(self, invoice):
  202. """
  203. 根据传入的invoice的对象取出对应的值 构造出 source_line的一个dict 包含source line的主要参数
  204. :param invoice: money_invoice对象
  205. :return: dict
  206. """
  207. return {
  208. 'name': invoice.id,
  209. 'category_id': invoice.category_id.id,
  210. 'amount': invoice.amount,
  211. 'date': invoice.date,
  212. 'reconciled': invoice.reconciled,
  213. 'to_reconcile': invoice.to_reconcile,
  214. 'this_reconcile': invoice.to_reconcile,
  215. 'date_due': invoice.date_due,
  216. }
  217. def _get_invoice_search_list(self):
  218. """
  219. 构造出 invoice 搜索的domain
  220. :return:
  221. """
  222. invoice_search_list = [('partner_id', '=', self.partner_id.id),
  223. ('to_reconcile', '!=', 0),
  224. ('state', '=', 'done')]
  225. if self.env.context.get('type') == 'get':
  226. invoice_search_list.append(('category_id.type', '=', 'income'))
  227. else: # type = 'pay':
  228. invoice_search_list.append(('category_id.type', '=', 'expense'))
  229. return invoice_search_list
  230. @api.onchange('partner_id')
  231. def onchange_partner_id(self):
  232. """
  233. 对partner修改的监控当 partner 修改时,
  234. 就对 页面相对应的字段进行修改(bank_name,bank_num,source_ids)
  235. """
  236. if not self.partner_id:
  237. return {}
  238. self.source_ids = False
  239. source_lines = []
  240. self.bank_name = self.partner_id.bank_name
  241. self.bank_num = self.partner_id.bank_num
  242. for invoice in self.env['money.invoice'].search(
  243. self._get_invoice_search_list()):
  244. source_lines.append((0, 0, self._get_source_line(invoice)))
  245. self.source_ids = source_lines
  246. def money_order_done(self):
  247. '''对收付款单的审核按钮'''
  248. for order in self:
  249. if order.state == 'done':
  250. raise UserError('请不要重复确认')
  251. if order.type == 'pay' and \
  252. not order.partner_id.s_category_id.account_id:
  253. raise UserError('请输入供应商类别(%s)上的科目' %
  254. order.partner_id.s_category_id.name)
  255. if order.type == 'get' and \
  256. not order.partner_id.c_category_id.account_id:
  257. raise UserError('请输入客户类别(%s)上的科目' %
  258. order.partner_id.c_category_id.name)
  259. if order.advance_payment < 0 and order.source_ids:
  260. raise UserError('本次核销金额不能大于付款金额。\n差额: %s' %
  261. (order.advance_payment))
  262. total = 0
  263. for line in order.line_ids:
  264. rate_silent = self.env['res.currency'].get_rate_silent(
  265. order.date, line.currency_id.id)
  266. if order.type == 'pay': # 付款账号余额减少, 退款账号余额增加
  267. decimal_amount = self.env.ref('core.decimal_amount')
  268. balance = (
  269. line.currency_id
  270. != self.env.user.company_id.currency_id
  271. and line.bank_id.currency_amount
  272. or line.bank_id.balance)
  273. if float_compare(
  274. balance, line.amount,
  275. precision_digits=decimal_amount.digits) == -1:
  276. raise UserError('账户余额不足。\n账户余额:%s 付款行金额:%s' %
  277. (balance, line.amount))
  278. if (line.currency_id
  279. != self.env.user.company_id.currency_id): # 外币
  280. line.bank_id.currency_amount -= line.amount
  281. line.bank_id.balance -= line.amount * rate_silent
  282. else:
  283. line.bank_id.balance -= line.amount
  284. else: # 收款账号余额增加, 退款账号余额减少
  285. if (line.currency_id
  286. != self.env.user.company_id.currency_id): # 外币
  287. line.bank_id.currency_amount += line.amount
  288. line.bank_id.balance += line.amount * rate_silent
  289. else:
  290. line.bank_id.balance += line.amount
  291. total += line.amount
  292. if order.type == 'pay':
  293. order.partner_id.payable -= total - order.discount_amount
  294. else:
  295. order.partner_id.receivable -= total + order.discount_amount
  296. # 更新结算单的未核销金额、已核销金额
  297. for source in order.source_ids:
  298. decimal_amount = self.env.ref('core.decimal_amount')
  299. if float_compare(
  300. source.this_reconcile,
  301. abs(source.to_reconcile),
  302. precision_digits=decimal_amount.digits) == 1:
  303. raise UserError(
  304. '本次核销金额不能大于未核销金额。\n 核销金额:%s 未核销金额:%s'
  305. % (abs(source.to_reconcile), source.this_reconcile))
  306. source.name.to_reconcile -= source.this_reconcile
  307. source.name.reconciled += source.this_reconcile
  308. if source.this_reconcile == 0: # 如果核销行的本次付款金额为0,删除
  309. source.unlink()
  310. # 生成凭证并审核
  311. if order.type == 'get':
  312. voucher = order.create_money_order_get_voucher(
  313. order.line_ids, order.source_ids, order.partner_id,
  314. order.name, order.note or '')
  315. else:
  316. voucher = order.create_money_order_pay_voucher(
  317. order.line_ids, order.source_ids, order.partner_id,
  318. order.name, order.note or '')
  319. voucher.voucher_done()
  320. return order.write({
  321. 'to_reconcile': order.advance_payment,
  322. 'reconciled': order.amount - order.advance_payment,
  323. 'voucher_id': voucher.id,
  324. 'approve_uid': self.env.uid,
  325. 'approve_date': fields.Datetime.now(self),
  326. 'state': 'done',
  327. })
  328. def money_order_draft(self):
  329. """
  330. 收付款单反审核方法
  331. """
  332. for order in self:
  333. if order.state == 'draft':
  334. raise UserError('请不要重复撤销 %s' % self._description)
  335. # 收/付款单 存在已审核金额不为0的核销单
  336. total_current_reconciled = order.amount - order.advance_payment
  337. decimal_amount = self.env.ref('core.decimal_amount')
  338. if float_compare(order.reconciled,
  339. total_current_reconciled,
  340. precision_digits=decimal_amount.digits) != 0:
  341. raise UserError('单据已核销金额不为0,不能反审核!请检查核销单!')
  342. total = 0
  343. for line in order.line_ids:
  344. rate_silent = self.env['res.currency'].get_rate_silent(
  345. order.date, line.currency_id.id)
  346. if order.type == 'pay': # 反审核:付款账号余额增加
  347. if (line.currency_id
  348. != self.env.user.company_id.currency_id): # 外币
  349. line.bank_id.currency_amount += line.amount
  350. line.bank_id.balance += line.amount * rate_silent
  351. else:
  352. line.bank_id.balance += line.amount
  353. else: # 反审核:收款账号余额减少
  354. balance = (
  355. line.currency_id
  356. != self.env.user.company_id.currency_id
  357. and line.bank_id.currency_amount
  358. or line.bank_id.balance)
  359. decimal_amount = self.env.ref('core.decimal_amount')
  360. if float_compare(
  361. balance,
  362. line.amount,
  363. precision_digits=decimal_amount.digits) == -1:
  364. raise UserError('账户余额不足。\n 账户余额:%s 收款行金额:%s' %
  365. (balance, line.amount))
  366. if (line.currency_id
  367. != self.env.user.company_id.currency_id): # 外币
  368. line.bank_id.currency_amount -= line.amount
  369. line.bank_id.balance -= line.amount * rate_silent
  370. else:
  371. line.bank_id.balance -= line.amount
  372. total += line.amount
  373. if order.type == 'pay':
  374. order.partner_id.payable += total - order.discount_amount
  375. else:
  376. order.partner_id.receivable += total + order.discount_amount
  377. for source in order.source_ids:
  378. source.name.to_reconcile += source.this_reconcile
  379. source.name.reconciled -= source.this_reconcile
  380. voucher = order.voucher_id
  381. order.write({
  382. 'to_reconcile': 0,
  383. 'reconciled': 0,
  384. 'voucher_id': False,
  385. 'approve_uid': False,
  386. 'approve_date': False,
  387. 'state': 'draft',
  388. })
  389. # 反审核凭证并删除
  390. if voucher.state == 'done':
  391. voucher.voucher_draft()
  392. voucher.unlink()
  393. return True
  394. def _prepare_vouch_line_data(self, line, name, account_id, debit, credit,
  395. voucher_id, partner_id, currency_id):
  396. rate_silent = currency_amount = 0
  397. if currency_id:
  398. rate_silent = self.env['res.currency'].get_rate_silent(
  399. self.date, currency_id)
  400. currency_amount = debit or credit
  401. debit = debit * (rate_silent or 1)
  402. credit = credit * (rate_silent or 1)
  403. return {
  404. 'name': name,
  405. 'account_id': account_id,
  406. 'debit': debit,
  407. 'credit': credit,
  408. 'voucher_id': voucher_id,
  409. 'partner_id': partner_id,
  410. 'currency_id': currency_id,
  411. 'currency_amount': currency_amount,
  412. 'rate_silent': rate_silent or ''
  413. }
  414. def _create_voucher_line(self, line, name, account_id, debit, credit,
  415. voucher_id, partner_id, currency_id):
  416. line_data = self._prepare_vouch_line_data(
  417. line, name, account_id, debit, credit,
  418. voucher_id, partner_id, currency_id)
  419. voucher_line = self.env['voucher.line'].create(line_data)
  420. return voucher_line
  421. def create_money_order_get_voucher(self, line_ids, source_ids,
  422. partner, name, note):
  423. """
  424. 为收款单创建凭证
  425. :param line_ids: 收款单明细
  426. :param source_ids: 没用到
  427. :param partner: 客户
  428. :param name: 收款单名称
  429. :return: 创建的凭证
  430. """
  431. vouch_obj = self.env['voucher'].create(
  432. {'date': self.date, 'ref': '%s,%s' % (self._name, self.id)})
  433. # self.write({'voucher_id': vouch_obj.id})
  434. amount_all = 0.0
  435. line_data = False
  436. for line in line_ids:
  437. line_data = line
  438. if not line.bank_id.account_id:
  439. raise UserError('请配置%s的会计科目' % (line.bank_id.name))
  440. # 生成借方明细行
  441. if line.amount: # 可能输入金额为0的收款单用于核销尾差
  442. self._create_voucher_line(line,
  443. "%s %s" % (name, note),
  444. line.bank_id.account_id.id,
  445. line.amount,
  446. 0,
  447. vouch_obj.id,
  448. '',
  449. line.currency_id.id
  450. )
  451. amount_all += line.amount
  452. if self.discount_amount != 0:
  453. # 生成借方明细行
  454. self._create_voucher_line(
  455. False,
  456. "%s 现金折扣 %s" % (name, note),
  457. self.discount_account_id.id,
  458. self.discount_amount,
  459. 0,
  460. vouch_obj.id,
  461. self.partner_id.id,
  462. line_data and line_data.currency_id.id or self.currency_id.id
  463. )
  464. if partner.c_category_id:
  465. partner_account_id = partner.c_category_id.account_id.id
  466. # 生成贷方明细行
  467. if amount_all + self.discount_amount:
  468. self._create_voucher_line(
  469. '',
  470. "%s %s" % (name, note),
  471. partner_account_id,
  472. 0,
  473. amount_all + self.discount_amount,
  474. vouch_obj.id,
  475. self.partner_id.id,
  476. line_data and line.currency_id.id or self.currency_id.id
  477. )
  478. return vouch_obj
  479. def create_money_order_pay_voucher(self, line_ids, source_ids,
  480. partner, name, note):
  481. """
  482. 为付款单创建凭证
  483. :param line_ids: 付款单明细
  484. :param source_ids: 没用到
  485. :param partner: 供应商
  486. :param name: 付款单名称
  487. :return: 创建的凭证
  488. """
  489. vouch_obj = self.env['voucher'].create(
  490. {'date': self.date, 'ref': '%s,%s' % (self._name, self.id)})
  491. # self.write({'voucher_id': vouch_obj.id})
  492. amount_all = 0.0
  493. line_data = False
  494. for line in line_ids:
  495. line_data = line
  496. if not line.bank_id.account_id:
  497. raise UserError('请配置%s的会计科目' % (line.bank_id.name))
  498. # 生成贷方明细行 credit
  499. if line.amount: # 支持金额为0的付款用于核销尾差
  500. self._create_voucher_line(line,
  501. "%s %s" % (name, note),
  502. line.bank_id.account_id.id,
  503. 0,
  504. line.amount,
  505. vouch_obj.id,
  506. '',
  507. line.currency_id.id
  508. )
  509. amount_all += line.amount
  510. partner_account_id = partner.s_category_id.account_id.id
  511. # 生成借方明细行 debit
  512. if amount_all - self.discount_amount:
  513. self._create_voucher_line(
  514. '',
  515. "%s %s" % (name, note),
  516. partner_account_id,
  517. amount_all - self.discount_amount,
  518. 0,
  519. vouch_obj.id,
  520. self.partner_id.id,
  521. line_data and line.currency_id.id or self.currency_id.id
  522. )
  523. if self.discount_amount != 0:
  524. # 生成借方明细行 debit
  525. self._create_voucher_line(
  526. line_data and line_data or False,
  527. "%s 手续费 %s" % (name, note),
  528. self.discount_account_id.id,
  529. self.discount_amount,
  530. 0,
  531. vouch_obj.id,
  532. self.partner_id.id,
  533. line_data and line.currency_id.id or self.currency_id.id
  534. )
  535. return vouch_obj
  536. class MoneyOrderLine(models.Model):
  537. _name = 'money.order.line'
  538. _description = '收付款单明细'
  539. @api.depends('bank_id')
  540. def _compute_currency_id(self):
  541. """
  542. 获取币别
  543. """
  544. for mol in self:
  545. mol.currency_id = mol.bank_id.account_id.currency_id.id \
  546. or mol.env.user.company_id.currency_id.id
  547. if mol.bank_id and mol.currency_id != mol.money_id.currency_id:
  548. raise ValidationError(
  549. '结算帐户与业务伙伴币别不一致。\n 结算账户币别:%s 业务伙伴币别:%s'
  550. % (mol.currency_id.name, mol.money_id.currency_id.name))
  551. money_id = fields.Many2one('money.order', string='收付款单',
  552. ondelete='cascade',
  553. help='订单行对应的收付款单')
  554. bank_id = fields.Many2one('bank.account', string='结算账户',
  555. required=True, ondelete='restrict',
  556. help='本次收款/付款所用的计算账户,确认收付款单会修改对应账户的金额')
  557. amount = fields.Float(string='金额',
  558. digits='Amount',
  559. help='本次结算金额')
  560. mode_id = fields.Many2one('settle.mode', string='结算方式',
  561. ondelete='restrict',
  562. help='结算方式:支票、信用卡等')
  563. currency_id = fields.Many2one(
  564. 'res.currency', '币别',
  565. compute='_compute_currency_id',
  566. store=True, readonly=True,
  567. help='结算账户对应的外币币别')
  568. number = fields.Char(string='结算号',
  569. help='本次结算号')
  570. note = fields.Char(string='备注',
  571. help='可以为本次结算添加一些需要的标识信息')
  572. company_id = fields.Many2one(
  573. 'res.company',
  574. string='公司',
  575. change_default=True,
  576. default=lambda self: self.env.company)
上海开阖软件有限公司 沪ICP备12045867号-1