콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
6730 화면

I need to export the data from odoo in a format which can be imported in tally. Is it possible to do so?

I am using odoo8.

아바타
취소

Exporting data from odoo isnt that hard. Now you have mentioned that this export should be imported in Italy, but the country doesnt matter too much, what matters is the format of the data that you are going to need there. Finding a module in apps.odoo.com would be the best, and if you are a developer you can make a module which would export the data. Just initialize an empy dict before you start the for loop, then assign all the values that you are going to need from the record and then return those values. Exporting data from a product would be like this:

@api.one

def get_product_data(self):

aValues = dict()

aValues['id'] = self.id

aValues['name'] = self.name

aValues['cost'] = self.standard_price

aValues['price'] = self.list_price

aValues['available'] = 1 if self.active else 0

aValues['isbn'] = self.hs_code

aValues['barcode'] = self.barcode

aValues['internal_reference'] = self.default_code

aValues['stock'] = self.qty_available

aValues['description'] = self.description_sale

return aValues

Then just write aValues into an xml or which ever filetype or extension that you need. For more info reply. Cheers

베스트 답변

Hello,

You can use this module to import data from tally even you can export odoo data to tally.

https://www.odoo.com/apps/modules/10.0/tally_connector/

Thank You,

아바타
취소

Link is broken or APP not available on app store

Hello Sunny,

The module is no longer available for selling thats y the link not working and the post is old. There were problems in the module.

관련 게시물 답글 화면 활동
0
10월 21
59
3
7월 17
6394
0
9월 17
3447
2
3월 15
9376
0
10월 24
1316