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

445 行
20KB

  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
  4. from odoo import fields, models, api
  5. from odoo.tools import float_compare
  6. class OtherMoneyOrder(models.Model):
  7. _name = 'other.money.order'
  8. _description = '其他收入/其他支出'
  9. _inherit = ['mail.thread', 'mail.activity.mixin']
  10. _order = 'id desc'
  11. TYPE_SELECTION = [
  12. ('other_pay', '其他支出'),
  13. ('other_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') == 'other_get':
  20. values.update(
  21. {'name': self.env['ir.sequence'].next_by_code(
  22. 'other.get.order')})
  23. if self.env.context.get('type') == 'other_pay' \
  24. or values.get('name', '/') == '/':
  25. values.update(
  26. {'name': self.env['ir.sequence'].next_by_code(
  27. 'other.pay.order')})
  28. return super(OtherMoneyOrder, self).create(vals_list)
  29. @api.depends('line_ids.amount', 'line_ids.tax_amount')
  30. def _compute_total_amount(self):
  31. # 计算应付金额/应收金额
  32. for omo in self:
  33. omo.total_amount = sum((line.amount + line.tax_amount)
  34. for line in omo.line_ids)
  35. state = fields.Selection([
  36. ('draft', '草稿'),
  37. ('done', '已确认'),
  38. ('cancel', '已作废'),
  39. ], string='状态', readonly=True,
  40. default='draft', copy=False, index=True,
  41. tracking=True,
  42. help='其他收支单状态标识,新建时状态为草稿;确认后状态为已确认')
  43. partner_id = fields.Many2one('partner', string='往来单位',
  44. ondelete='restrict',
  45. help='单据对应的业务伙伴,单据确认时会影响他的应收应付余额')
  46. date = fields.Date(string='单据日期',
  47. default=lambda self: fields.Date.context_today(self),
  48. copy=False,
  49. help='单据创建日期')
  50. name = fields.Char(string='单据编号', copy=False, readonly=True, default='/',
  51. help='单据编号,创建时会根据类型自动生成')
  52. total_amount = fields.Float(string='金额', compute='_compute_total_amount',
  53. store=True, readonly=True,
  54. digits='Amount',
  55. help='本次其他收支的总金额')
  56. bank_id = fields.Many2one('bank.account', string='结算账户',
  57. required=True, ondelete='restrict',
  58. help='本次其他收支的结算账户')
  59. line_ids = fields.One2many('other.money.order.line', 'other_money_id',
  60. string='收支单行',
  61. copy=True,
  62. help='其他收支单明细行')
  63. type = fields.Selection(TYPE_SELECTION, string='类型',
  64. default=lambda self: self._context.get('type'),
  65. help='类型:其他收入 或者 其他支出')
  66. note = fields.Text('备注',
  67. help='可以为该单据添加一些需要的标识信息')
  68. is_init = fields.Boolean('初始化应收应付', help='此单是否为初始化单')
  69. company_id = fields.Many2one(
  70. 'res.company',
  71. string='公司',
  72. change_default=True,
  73. default=lambda self: self.env.company)
  74. receiver = fields.Char('收款人',
  75. help='收款人')
  76. bank_name = fields.Char('开户行')
  77. bank_num = fields.Char('银行账号')
  78. voucher_id = fields.Many2one('voucher',
  79. '对应凭证',
  80. readonly=True,
  81. ondelete='restrict',
  82. copy=False,
  83. help='其他收支单确认时生成的对应凭证')
  84. currency_amount = fields.Float('外币金额',
  85. digits='Amount')
  86. details = fields.Html('明细', compute='_compute_details')
  87. @api.depends('line_ids')
  88. def _compute_details(self):
  89. for v in self:
  90. vl = {'col': [], 'val': []}
  91. vl['col'] = ['类别', '会计科目', '辅助核算', '金额']
  92. for li in v.line_ids:
  93. vl['val'].append([
  94. li.category_id.name,
  95. li.account_id.display_name,
  96. li.auxiliary_id.name or '',
  97. li.amount])
  98. v.details = v.company_id._get_html_table(vl)
  99. @api.onchange('date')
  100. def onchange_date(self):
  101. if self._context.get('type') == 'other_get':
  102. return {'domain': {'partner_id': [('c_category_id', '!=', False)]}}
  103. else:
  104. return {'domain': {'partner_id': [('s_category_id', '!=', False)]}}
  105. @api.onchange('partner_id')
  106. def onchange_partner_id(self):
  107. """
  108. 更改业务伙伴,自动填入收款人、开户行和银行帐号
  109. """
  110. if self.partner_id:
  111. self.receiver = self.partner_id.name
  112. self.bank_name = self.partner_id.bank_name
  113. self.bank_num = self.partner_id.bank_num
  114. def other_money_done(self):
  115. '''其他收支单的审核按钮'''
  116. self.ensure_one()
  117. if float_compare(self.total_amount, 0, 3) <= 0:
  118. raise UserError('金额应该大于0。\n金额:%s' % self.total_amount)
  119. if not self.bank_id.account_id:
  120. raise UserError('请配置%s的会计科目' % (self.bank_id.name))
  121. # 根据单据类型更新账户余额
  122. if self.type == 'other_pay':
  123. decimal_amount = self.env.ref('core.decimal_amount')
  124. if float_compare(
  125. self.bank_id.balance,
  126. self.total_amount,
  127. decimal_amount.digits) == -1:
  128. raise UserError('账户余额不足。\n账户余额:%s 本次支出金额:%s' %
  129. (self.bank_id.balance, self.total_amount))
  130. self.bank_id.balance -= self.total_amount
  131. else:
  132. self.bank_id.balance += self.total_amount
  133. # 创建凭证并审核非初始化凭证
  134. vouch_obj = self.create_voucher()
  135. return self.write({
  136. 'voucher_id': vouch_obj.id,
  137. 'state': 'done',
  138. })
  139. def other_money_draft(self):
  140. '''其他收支单的反审核按钮'''
  141. self.ensure_one()
  142. # 根据单据类型更新账户余额
  143. if self.type == 'other_pay':
  144. self.bank_id.balance += self.total_amount
  145. else:
  146. decimal_amount = self.env.ref('core.decimal_amount')
  147. if float_compare(
  148. self.bank_id.balance,
  149. self.total_amount,
  150. decimal_amount.digits) == -1:
  151. raise UserError('账户余额不足。\n账户余额:%s 本次支出金额:%s' %
  152. (self.bank_id.balance, self.total_amount))
  153. self.bank_id.balance -= self.total_amount
  154. voucher = self.voucher_id
  155. self.write({
  156. 'voucher_id': False,
  157. 'state': 'draft',
  158. })
  159. # 反审核凭证并删除
  160. if voucher.state == 'done':
  161. voucher.voucher_draft()
  162. # 始初化单反审核只删除明细行
  163. if self.is_init:
  164. vouch_obj = self.env['voucher'].search([('id', '=', voucher.id)])
  165. vouch_obj_lines = self.env['voucher.line'].search([
  166. ('voucher_id', '=', vouch_obj.id),
  167. ('account_id', '=', self.bank_id.account_id.id),
  168. ('init_obj', '=', 'other_money_order-%s' % (self.id))])
  169. for vouch_obj_line in vouch_obj_lines:
  170. vouch_obj_line.unlink()
  171. else:
  172. voucher.unlink()
  173. return True
  174. def create_voucher(self):
  175. """创建凭证并审核非初始化凭证"""
  176. init_obj = ''
  177. # 初始化单的话,先找是否有初始化凭证,没有则新建一个
  178. if self.is_init:
  179. vouch_obj = self.env['voucher'].search([('is_init', '=', True)])
  180. if not vouch_obj:
  181. vouch_obj = self.env['voucher'].create({
  182. 'date': self.date,
  183. 'is_init': True,
  184. 'ref': '%s,%s' % (self._name, self.id)})
  185. else:
  186. vouch_obj = self.env['voucher'].create(
  187. {'date': self.date, 'ref': '%s,%s' % (self._name, self.id)})
  188. if self.is_init:
  189. init_obj = 'other_money_order-%s' % (self.id)
  190. if self.type == 'other_get': # 其他收入单
  191. self.other_get_create_voucher_line(vouch_obj, init_obj)
  192. else: # 其他支出单
  193. self.other_pay_create_voucher_line(vouch_obj)
  194. # 如果非初始化单则审核
  195. if not self.is_init:
  196. vouch_obj.voucher_done()
  197. return vouch_obj
  198. def other_get_create_voucher_line(self, vouch_obj, init_obj):
  199. """
  200. 其他收入单生成凭证明细行
  201. :param vouch_obj: 凭证
  202. :return:
  203. """
  204. in_currency_id = (
  205. self.bank_id.currency_id.id
  206. or self.env.user.company_id.currency_id.id)
  207. company_currency_id = self.env.user.company_id.currency_id.id
  208. in_is_company_currency = in_currency_id == company_currency_id
  209. vals = {}
  210. for line in self.line_ids:
  211. if not line.category_id.account_id:
  212. raise UserError('请配置%s的会计科目' % (line.category_id.name))
  213. rate_silent = self.env['res.currency'].get_rate_silent(
  214. self.date, self.bank_id.currency_id.id)
  215. vals.update({'vouch_obj_id': vouch_obj.id,
  216. 'name': self.name, 'note': line.note or '',
  217. 'credit_auxiliary_id': line.auxiliary_id.id,
  218. 'amount': abs(line.amount + line.tax_amount),
  219. 'credit_account_id': line.category_id.account_id.id,
  220. 'debit_account_id': self.bank_id.account_id.id,
  221. 'partner_credit': self.partner_id.id,
  222. 'partner_debit': '',
  223. 'sell_tax_amount': line.tax_amount or 0,
  224. 'init_obj': init_obj,
  225. 'currency_id': self.bank_id.currency_id.id,
  226. 'currency_amount': (
  227. not in_is_company_currency
  228. and self.total_amount or 0),
  229. # 判断是否本币
  230. 'rate_silent': rate_silent,
  231. })
  232. # 贷方行
  233. if not init_obj:
  234. self.env['voucher.line'].create({
  235. 'name': "%s %s" % (vals.get('name'), vals.get('note')),
  236. 'partner_id': vals.get('partner_credit', ''),
  237. 'account_id': vals.get('credit_account_id'),
  238. 'credit': (
  239. in_is_company_currency
  240. and line.amount
  241. or line.amount * vals.get('rate_silent')),
  242. 'voucher_id': vals.get('vouch_obj_id'),
  243. 'auxiliary_id': vals.get('credit_auxiliary_id', False),
  244. 'currency_amount': (
  245. not in_is_company_currency
  246. and line.amount or 0),
  247. 'rate_silent': vals.get('rate_silent'),
  248. })
  249. # 销项税行
  250. if vals.get('sell_tax_amount'):
  251. if not self.env.user.company_id.output_tax_account:
  252. raise UserError(
  253. '您还没有配置公司的销项税科目。\n请通过"配置-->高级配置-->公司"菜单来设置销项税科目!')
  254. self.env['voucher.line'].create({
  255. 'name': "%s %s" % (vals.get('name'), vals.get('note')),
  256. 'account_id':
  257. self.env.user.company_id.output_tax_account.id,
  258. 'credit': in_is_company_currency
  259. and line.tax_amount
  260. or line.tax_amount * vals.get('rate_silent') or 0,
  261. 'voucher_id': vals.get('vouch_obj_id'),
  262. 'currency_amount':
  263. not in_is_company_currency
  264. and line.tax_amount or 0,
  265. 'rate_silent': vals.get('rate_silent'),
  266. })
  267. # 借方行
  268. self.env['voucher.line'].create({
  269. 'name': "%s" % (vals.get('name')),
  270. 'account_id': vals.get('debit_account_id'),
  271. # 借方和
  272. 'debit':
  273. in_is_company_currency
  274. and self.total_amount
  275. or self.total_amount * vals.get('rate_silent'),
  276. 'voucher_id': vals.get('vouch_obj_id'),
  277. 'partner_id': vals.get('partner_debit', ''),
  278. 'auxiliary_id': vals.get('debit_auxiliary_id', False),
  279. 'init_obj': vals.get('init_obj', False),
  280. 'currency_id': vals.get('currency_id', False),
  281. 'currency_amount': vals.get('currency_amount'),
  282. 'rate_silent': vals.get('rate_silent'),
  283. })
  284. def other_pay_create_voucher_line(self, vouch_obj):
  285. """
  286. 其他支出单生成凭证明细行
  287. :param vouch_obj: 凭证
  288. :return:
  289. """
  290. out_currency_id = \
  291. self.bank_id.currency_id.id \
  292. or self.env.user.company_id.currency_id.id
  293. company_currency_id = self.env.user.company_id.currency_id.id
  294. out_is_company_currency = out_currency_id == company_currency_id
  295. vals = {}
  296. for line in self.line_ids:
  297. if not line.category_id.account_id:
  298. raise UserError('请配置%s的会计科目' % (line.category_id.name))
  299. rate_silent = self.env['res.currency'].get_rate_silent(
  300. self.date, self.bank_id.currency_id.id)
  301. vals.update({'vouch_obj_id': vouch_obj.id, 'name': self.name,
  302. 'note': line.note or '',
  303. 'debit_auxiliary_id': line.auxiliary_id.id,
  304. 'amount': abs(line.amount + line.tax_amount),
  305. 'credit_account_id': self.bank_id.account_id.id,
  306. 'debit_account_id': line.category_id.account_id.id,
  307. 'partner_credit': '',
  308. 'partner_debit': self.partner_id.id,
  309. 'buy_tax_amount': line.tax_amount or 0,
  310. 'currency_id': self.bank_id.currency_id.id,
  311. 'currency_amount':
  312. not out_is_company_currency
  313. and self.total_amount or 0, # 判断是否本币
  314. 'rate_silent': rate_silent,
  315. })
  316. # 借方行
  317. self.env['voucher.line'].create({
  318. 'name': "%s %s " % (vals.get('name'), vals.get('note')),
  319. 'account_id': vals.get('debit_account_id'),
  320. 'debit':
  321. out_is_company_currency
  322. and line.amount
  323. or line.amount * vals.get('rate_silent'),
  324. 'voucher_id': vals.get('vouch_obj_id'),
  325. 'partner_id': vals.get('partner_debit', ''),
  326. 'auxiliary_id': vals.get('debit_auxiliary_id', False),
  327. 'init_obj': vals.get('init_obj', False),
  328. 'currency_amount':
  329. not out_is_company_currency
  330. and line.amount or 0,
  331. 'rate_silent': vals.get('rate_silent'),
  332. })
  333. # 进项税行
  334. if vals.get('buy_tax_amount'):
  335. if not self.env.user.company_id.import_tax_account:
  336. raise UserError('请通过"配置-->高级配置-->公司"菜单来设置进项税科目')
  337. self.env['voucher.line'].create({
  338. 'name': "%s %s" % (vals.get('name'), vals.get('note')),
  339. 'account_id':
  340. self.env.user.company_id.import_tax_account.id,
  341. 'debit':
  342. out_is_company_currency
  343. and line.tax_amount
  344. or line.tax_amount * vals.get('rate_silent') or 0,
  345. 'voucher_id': vals.get('vouch_obj_id'),
  346. 'currency_amount':
  347. not out_is_company_currency
  348. and line.tax_amount or 0,
  349. 'rate_silent': vals.get('rate_silent'),
  350. })
  351. # 贷方行
  352. self.env['voucher.line'].create({
  353. 'name': "%s" % (vals.get('name')),
  354. 'partner_id': vals.get('partner_credit', ''),
  355. 'account_id': vals.get('credit_account_id'),
  356. # 借方和
  357. 'credit':
  358. out_is_company_currency
  359. and self.total_amount
  360. or self.total_amount * vals.get('rate_silent'),
  361. 'voucher_id': vals.get('vouch_obj_id'),
  362. 'auxiliary_id': vals.get('credit_auxiliary_id', False),
  363. 'init_obj': vals.get('init_obj', False),
  364. 'currency_id': vals.get('currency_id', False),
  365. 'currency_amount': vals.get('currency_amount'),
  366. 'rate_silent': vals.get('rate_silent'),
  367. })
  368. class OtherMoneyOrderLine(models.Model):
  369. _name = 'other.money.order.line'
  370. _description = '其他收支单明细'
  371. @api.onchange('service')
  372. def onchange_service(self):
  373. # 当选择了收支项后,则自动填充上类别和金额
  374. if self.env.context.get('order_type') == 'other_get':
  375. self.category_id = self.service.get_categ_id.id
  376. elif self.env.context.get('order_type') == 'other_pay':
  377. self.category_id = self.service.pay_categ_id.id
  378. self.amount = self.service.price
  379. self.tax_rate = self.tax_rate
  380. @api.onchange('amount', 'tax_rate')
  381. def onchange_tax_amount(self):
  382. '''当订单行的金额、税率改变时,改变税额'''
  383. self.tax_amount = self.amount * self.tax_rate * 0.01
  384. other_money_id = fields.Many2one('other.money.order',
  385. '其他收支', ondelete='cascade',
  386. help='其他收支单行对应的其他收支单')
  387. service = fields.Many2one('service', '收支项', ondelete='restrict',
  388. help='其他收支单行上对应的收支项')
  389. category_id = fields.Many2one('core.category',
  390. '类别', ondelete='restrict',
  391. help='类型:运费、咨询费等')
  392. account_id = fields.Many2one('finance.account',
  393. '科目', related='category_id.account_id')
  394. auxiliary_id = fields.Many2one('auxiliary.financing', '辅助核算',
  395. help='其他收支单行上的辅助核算')
  396. amount = fields.Float('金额',
  397. digits='Amount',
  398. help='其他收支单行上的金额')
  399. tax_rate = fields.Float(
  400. '税率(%)',
  401. default=lambda self: self.env.user.company_id.import_tax_rate,
  402. help='其他收支单行上的税率')
  403. tax_amount = fields.Float('税额',
  404. digits='Amount',
  405. help='其他收支单行上的税额')
  406. note = fields.Char('备注',
  407. help='可以为该单据添加一些需要的标识信息')
  408. company_id = fields.Many2one(
  409. 'res.company',
  410. string='公司',
  411. change_default=True,
  412. default=lambda self: self.env.company)
上海开阖软件有限公司 沪ICP备12045867号-1