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.

26 lines
1.0KB

  1. from odoo import api, fields, models
  2. class ResCompany(models.Model):
  3. '''继承公司对象,添加字段'''
  4. _inherit = 'res.company'
  5. wh_scrap_id = fields.Many2one('warehouse',
  6. string='废品库')
  7. @api.model
  8. def _get_operating_cost_account_id(self):
  9. return self._get_operating_cost_account_id_impl()
  10. @api.model
  11. def _get_operating_cost_account_id_impl(self):
  12. return self.env.ref('finance.small_business_chart2211001')
  13. is_enable_negative_stock = fields.Boolean('允许负库存')
  14. endmonth_generation_cost = fields.Boolean(
  15. '月末生成出库凭证', help='月末结帐时一次性生成成本凭证')
  16. operating_cost_account_id = fields.Many2one('finance.account', default=_get_operating_cost_account_id,
  17. ondelete='restrict',
  18. string='生产费用科目', help='用在组装拆卸的费用上!')
  19. vendor_price_taxed = fields.Boolean('供应商供货价含税')
上海开阖软件有限公司 沪ICP备12045867号-1