__init__.py 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # -*- coding: utf-8 -*-
  2. # REPORT CONFIG
  3. from report_report import get_report_report
  4. # from report_category import get_report_category
  5. # RES USERS
  6. from res_users import get_res_users
  7. from res_partner import get_res_partner
  8. # ACCOUNT VOUCHER
  9. from account_voucher import get_account_voucher_all
  10. from account_voucher import get_account_voucher_customer
  11. from account_voucher import get_account_voucher_supplier
  12. from account_voucher import get_account_voucher_payment
  13. from account_move_line import get_account_move_line
  14. # ACCOUNT BANK STATEMENT lINE
  15. from account_bank_statement_line import get_account_bank_statement_line
  16. from res_company import get_res_company
  17. from res_company import get_company_logo
  18. from res_store import get_res_store
  19. from account_journal import get_account_journal
  20. from pos_order import get_pos_order
  21. from pos_order_line import get_pos_order_line
  22. from account_period import get_account_period
  23. # PRODUCT
  24. # from product_category import get_product_category_all
  25. # from product_category import get_product_category_expense
  26. # from product_brand import get_product_brand
  27. # from product_attribute import get_product_attribute
  28. # from product_attribute_value import get_product_attribute_value
  29. # from product_product import get_product_product
  30. # ACCOUNT INVOICE
  31. from account_invoice import get_account_invoice_all_type
  32. from account_invoice import get_account_invoice_sale_type
  33. from account_invoice import get_account_invoice_sale_and_refund_type
  34. from account_invoice import get_account_invoice_purchase_type
  35. from account_invoice import get_account_invoice_expense_type
  36. # ACCOUNT INVOICE LINE
  37. from account_invoice_line import get_account_invoice_line_all_type
  38. from account_invoice_line import get_account_invoice_line_out_invoice
  39. from account_invoice_line import get_account_invoice_line_out_invoice_and_out_refund
  40. from account_invoice_line import get_account_invoice_line_in_invoice_purchase
  41. from account_invoice_line import get_account_invoice_line_in_invoice_expense