__manifest__.py 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # -*- encoding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Indonesia E-faktur',
  5. 'icon': '/l10n_id/static/description/icon.png',
  6. 'version': '1.0',
  7. 'description': """
  8. E-Faktur Menu(Indonesia)
  9. Format : 010.000-16.00000001
  10. * 2 (dua) digit pertama adalah Kode Transaksi
  11. * 1 (satu) digit berikutnya adalah Kode Status
  12. * 3 (tiga) digit berikutnya adalah Kode Cabang
  13. * 2 (dua) digit pertama adalah Tahun Penerbitan
  14. * 8 (delapan) digit berikutnya adalah Nomor Urut
  15. To be able to export customer invoices as e-Faktur,
  16. you need to put the ranges of numbers you were assigned
  17. by the government in Accounting > Customers > e-Faktur
  18. When you validate an invoice, where the partner has the ID PKP
  19. field checked, a tax number will be assigned to that invoice.
  20. Afterwards, you can filter the invoices still to export in the
  21. invoices list and click on Action > Download e-Faktur to download
  22. the csv and upload it to the site of the government.
  23. You can replace an already sent invoice by another by indicating
  24. the replaced invoice and the new one and you can reset an invoice
  25. you have not already sent to the government to reuse its number.
  26. """,
  27. 'category': 'Accounting/Localizations/EDI',
  28. 'depends': ['l10n_id'],
  29. 'data': [
  30. 'security/ir.model.access.csv',
  31. 'views/account_move_views.xml',
  32. 'views/efaktur_views.xml',
  33. 'views/res_config_settings_views.xml',
  34. 'views/res_partner_views.xml',
  35. ],
  36. 'installable': True,
  37. 'auto_install': True,
  38. 'license': 'LGPL-3',
  39. }