__manifest__.py 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. "name": """Indian - E-waybill""",
  5. "version": "1.03.00",
  6. "icon": "/l10n_in/static/description/icon.png",
  7. "category": "Accounting/Localizations/EDI",
  8. "depends": [
  9. "l10n_in_edi",
  10. ],
  11. "description": """
  12. Indian - E-waybill
  13. ====================================
  14. To submit E-waybill through API to the government.
  15. We use "Tera Software Limited" as GSP
  16. Step 1: First you need to create an API username and password in the E-waybill portal.
  17. Step 2: Switch to company related to that GST number
  18. Step 3: Set that username and password in Odoo (Goto: Invoicing/Accounting -> Configration -> Settings -> Indian Electronic WayBill or find "E-waybill" in search bar)
  19. Step 4: Repeat steps 1,2,3 for all GSTIN you have in odoo. If you have a multi-company with the same GST number then perform step 1 for the first company only.
  20. """,
  21. "data": [
  22. "security/ir.model.access.csv",
  23. "data/account_edi_data.xml",
  24. "data/ewaybill_type_data.xml",
  25. "views/account_move_views.xml",
  26. "views/edi_pdf_report.xml",
  27. "views/res_config_settings_views.xml",
  28. ],
  29. "demo": [
  30. "demo/demo_company.xml",
  31. "demo/res_partner_demo.xml",
  32. "demo/account_invoice_demo.xml",
  33. ],
  34. "installable": True,
  35. # not applicable when company is related to service industry so auto install is False
  36. "auto_install": False,
  37. "license": "LGPL-3",
  38. }