[IMP]hr_timesheet_invoice:renamed buttons Close to Contract Finished and Cancel to Cancel Contract

bzr revid: ssu@tinyerp.com-20121016063847-vpwt26fwme7reryx
This commit is contained in:
Saurang Suthar 2012-10-16 12:08:47 +05:30
parent daa7ed0fb5
commit 27ea8ab7a4
1 changed files with 2 additions and 2 deletions

View File

@ -19,10 +19,10 @@
<xpath expr="/form/sheet" position='before'>
<header>
<button name="set_pending" string="Pending" type="object" states="open" />
<button name="set_close" string="Close" type="object" states="open,pending" />
<button name="set_close" string="Contract Finished" type="object" states="open,pending" />
<button name="set_open" string="Re-open project" type="object" states="pending,close" />
<button name="set_open" string="Re-open project" type="object" states="cancelled,draft"/>
<button name="set_cancel" string="Cancel" type="object" states="open,pending"/>
<button name="set_cancel" string="Cancel Contract" type="object" states="open,pending"/>
<field name="state" readonly="1" widget="statusbar"
statusbar_visible="open,pending,close" statusbar_colors='{"pending":"red", "template":"blue"}'/>
</header>