__openerp__.py 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # -*- encoding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # @authors: Alexander Ezquevo <alexander@acysos.com>
  5. # Copyright (C) 2015 Acysos S.L.
  6. #
  7. # This program is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU Affero General Public License as
  9. # published by the Free Software Foundation, either version 3 of the
  10. # License, or (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU Affero General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Affero General Public License
  18. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. #
  20. ##############################################################################
  21. {
  22. "name": "Addon for Animal farms",
  23. "version": "8.2",
  24. "license": "AGPL-3",
  25. "author": "Acysos S.L.",
  26. "website": "www.acysos.com",
  27. "contributors": ['Alexander Ezquevo alexander@acysos.com', ],
  28. "images": [],
  29. "category": "Specific IndustrY",
  30. "depends": [
  31. "product",
  32. "stock",
  33. "mrp",
  34. "mrp_lot_cost",
  35. "purchase",
  36. "account",
  37. "sale",
  38. ],
  39. "data": [
  40. "views/specie.xml",
  41. "views/tag.xml",
  42. "views/event_order.xml",
  43. "views/abstract_event.xml",
  44. "views/feed_event.xml",
  45. "views/medication_event.xml",
  46. "views/product.xml",
  47. "views/animal.xml",
  48. "views/breed.xml",
  49. "views/animal_group.xml",
  50. "views/stock.xml",
  51. "views/abort_event.xml",
  52. "views/pregnancy_diagnosis_event.xml",
  53. "views/farrowing_event.xml",
  54. "views/foster_event.xml",
  55. "views/insemination_event.xml",
  56. "views/move_event.xml",
  57. "views/removal_event.xml",
  58. "views/weaning_event.xml",
  59. "views/trasformation_event.xml",
  60. "views/production.xml",
  61. "views/semen_extraction_event.xml",
  62. "views/consume_stock.xml",
  63. "views/farm_menu.xml",
  64. "views/res_company.xml",
  65. "views/event_move.xml",
  66. "data/farm_data.xml",
  67. "views/purchase_analytics.xml",
  68. "views/account_invoice.xml",
  69. "security/farm_security.xml",
  70. "security/ir.model.access.csv",
  71. ],
  72. "installable": True,
  73. }