1234567891011121314151617181920212223242526272829 |
- # -*- coding: utf-8 -*-
- # RES COMPANY
- from res_company import get_res_company
- # RES STORE
- from res_store import get_res_store
- # RES CURRENCY
- from res_currency import get_res_currency
- # ACCOUNT JOURNAL
- from account_journal import get_account_journal
- # RES USERS
- from res_users import get_res_users
- # POS ORDER
- from pos_order import get_pos_order
- from pos_order_line import get_pos_order_line
- # ACCOUNT INVOICE
- from account_invoice import get_account_invoice_sale_type
- from account_invoice_line import get_account_invoice_line_out_invoice
- # ACCOUNT VOUCHER
- from account_voucher import get_account_voucher_customer
- # RES PARTNER
- from res_partner import get_customers
- # PRODUCT
- from product_category import get_product_category_all
- from product_category import get_product_category_expense
- from product_brand import get_product_brand
- from product_attribute import get_product_attribute
- from product_attribute_value import get_product_attribute_value
- from product_product import get_product_product
- # from product_product import get_product_product_image
|