versionone / VersionOne.SDK.Python

A library for custom Python development against the VersionOne Platform's REST-based API.
BSD 3-Clause "New" or "Revised" License
23 stars 32 forks source link

Updating Task DetailEstimate #10

Open scottkerber opened 10 years ago

scottkerber commented 10 years ago

Hi

VersionOne is hosted for us by VersionOne. I am trying to simply update the DetailEstimate of a task. I am not seeing the change reflected in VersionOne. There is no reported error message. If you have any thoughts on what could be going wrong it would be great to hear. I have no problems querying various objects and seeing their attributes. Just can not update anything.

v1 = V1Meta(address='www12.v1host.com', instance='SDT', username='xxxx' , password='yyyy' , scheme="https" )

task = v1.Task.where(Number='TK-02357').first() task.DetailEstimate = 21 v1.commit()

Thanks Scott

econrad commented 10 years ago

I am also unable to update data fields with v1pysdk's v1.commit(). My scripts report that the fields have changed when they are queried after the change, but when I access the data via the V1 web interface the same fields are unchanged. Then within 24hrs this 'changed' data reflected in my scripts is reset. Would like some help with this issue.

Thanks, Eric