openerp-india team mailing list archive
-
openerp-india team
-
Mailing list archive
-
Message #00155
[Bug 830694] Re: tally intergration tally exiting
Hello shravan tatinenicalcar
Run the following code in python.
import httplib
conn = httplib.HTTPConnection("localhost:9000")
headers = {"Content-type": "text/xml", "Accept": "text/xml"}
params = """<ENVELOPE><HEADER><TALLYREQUEST>Export Data</TALLYREQUEST>
</HEADER><BODY><EXPORTDATA><REQUESTDESC><REPORTNAME>Voucher Register</REPORTNAME>
</REQUESTDESC></EXPORTDATA></BODY></ENVELOPE>"""
conn.request("POST", "/", params, headers)
r1 = conn.getresponse()
print r1.status, r1.reason, r1.read()
I think, this will gives appropriate output.
Thanks.
--
You received this bug notification because you are a member of OpenERP
Indian Team, which is subscribed to OpenERP India.
https://bugs.launchpad.net/bugs/830694
Title:
tally intergration tally exiting
Status in OpenERP India:
New
Bug description:
tally is showing error in TDL
'part DB:body'
no parts or lines
and tally is closing away.
i tried getting voucher with normal httplib and tally connection. but the module is giving me this error in tally. can you suggest me what to be done
regards
To manage notifications about this bug go to:
https://bugs.launchpad.net/openerp-india/+bug/830694/+subscriptions
References