WuBook Community Forum
How to update value or property of room - Printable Version

+- WuBook Community Forum (https://en.wubook.net/forum)
+-- Forum: WuBook Suite (https://en.wubook.net/forum/forumdisplay.php?fid=1)
+--- Forum: Support for the Booking Engine (https://en.wubook.net/forum/forumdisplay.php?fid=2)
+--- Thread: How to update value or property of room (/showthread.php?tid=48)



How to update value or property of room - LP041 - 04-10-2014

Hello,

Could anyone help to give me some example use to update value or property of room by using mod_room().

I'm looking for your help!

Thanks in advance.


RE: How to update value or property of room - white - 04-17-2014

Hi, I think you have entered the chat online on the direct support but
if it is not answered yet, please let me know!

Regards


RE: How to update value or property of room - LP041 - 04-17-2014

(04-17-2014, 02:24 AM)white Wrote: Hi, I think you have entered the chat online on the direct support but
if it is not answered yet, please let me know!

Regards

Thank you for your advice! But I'm a new user and I don't know where can I find chat online to support, can you help me?


RE: How to update value or property of room - white - 04-17-2014

Well, inside the eextranet of WuBook on the right top you have an icon to get support, beside the little door icon.

If you click on it you will get to:
https://wubook.net/wauth/wauth/support
which is the page of support in WuBook. You can open tickets, chat on skype or access our private chat.

Try it..


RE: How to update value or property of room - yellow - 04-17-2014

For Wired related questions,

I strongly recommend to contact the development team (devel@). An example of mod_room is this one (python, but I attach also an xml):

>>> import xmlrpclib
>>> s= xmlrpclib.Server('https://wubook.net/xrws/')
>>> res, tok= s.get_token(user, pwd)
>>> s.mod_room(tok, lcode, 39802, 'f', 1, 100, 3, 'fer', 'nb') # 39802 is the room ID, 'f' is the new name, 1 is the occupancy, 100 the default price, 3 the default avail, 'fer' the shortname and 'nb' the default treatment.

That's the relative xml:

<methodCall>
<methodName>mod_room</methodName>
<params>
<param>
<value>
<string>9584970043.9180</string>
</value>
</param>
<param>
<value>
<int>1213394817</int>
</value>
</param>
<param>
<value>
<int>39802</int>
</value>
</param>
<param>
<value>
<string>f</string>
</value>
</param>
<param>
<value>
<int>1</int>
</value>
</param>
<param>
<value>
<int>100</int>
</value>
</param>
<param>
<value>
<int>3</int>
</value>
</param>
<param>
<value>
<string>fer</string>
</value>
</param>
<param>
<value>
<string>nb</string>
</value>
</param>
</params>
</methodCall>