hide the "Pending Date (for pending* states): (Solved)
Moderator: crythias
hide the "Pending Date (for pending* states): (Solved)
Hello OTRS goeroes,
how can i hide the "pending date (for pending*states):" field in 'phone tickets' , email tickets and notes etc.
I hope someone can help me with this one.
Thanks in advance.
how can i hide the "pending date (for pending*states):" field in 'phone tickets' , email tickets and notes etc.
I hope someone can help me with this one.
Thanks in advance.
Last edited by RickyA on 21 Dec 2010, 20:49, edited 1 time in total.
-
- Moderator
- Posts: 10170
- Joined: 04 May 2010, 18:38
- Znuny Version: 5.0.x
- Location: SouthWest Florida, USA
- Contact:
Re: hide the "Pending Date (for pending* states):
You can remove the entry from the dtl file for each screen, but do you want to permanently remove it or just not show it if there is no pending entry... It's rather important.
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Re: hide the "Pending Date (for pending* states):
Hi Crysthias,
Thanks for the response.
I just would like to not show it if there is no pending entry. Not permanent.
Thanks for the response.
I just would like to not show it if there is no pending entry. Not permanent.
-
- Moderator
- Posts: 10170
- Joined: 04 May 2010, 18:38
- Znuny Version: 5.0.x
- Location: SouthWest Florida, USA
- Contact:
Re: hide the "Pending Date (for pending* states):
Wait. If I'm reading this right, you want to hide the ability to make pending tickets on new ticket creation and notes?
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Re: hide the "Pending Date (for pending* states):
Yes you are reading it right.
-
- Moderator
- Posts: 10170
- Joined: 04 May 2010, 18:38
- Znuny Version: 5.0.x
- Location: SouthWest Florida, USA
- Contact:
Re: hide the "Pending Date (for pending* states):
You can remove the entries pending auto, pending reminder from the statetype entries in sysconfig for the modules you don't want to see. I don't know if that also removes the calendar lookup.
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Re: hide the "Pending Date (for pending* states):
I removed the states 'pending reminder' and 'pending auto' from the modules 'phone ticket' etc.. but the field 'Pending Date (for pending* states):' is stil there if you would like to make a new 'phone ticket'. Is there no other way then changing the .dtl file to hide this field?
-
- Moderator
- Posts: 10170
- Joined: 04 May 2010, 18:38
- Znuny Version: 5.0.x
- Location: SouthWest Florida, USA
- Contact:
Re: hide the "Pending Date (for pending* states):
Since this code is in, for instance, AgentTicketEmail.dtl, and there doesn't seem to be code to ignore it, no. Change it in your own custom theme, so it survives updates.
Code: Select all
<label>$Text{"Pending Date"} ($Text{"for pending* states"}):</label>
<div class="Field">
$Data{"PendingDateString"}
<div id="DayServerError" class="TooltipErrorMessage"><p>$Text{"Date invalid!"}</p></div>
<div id="HourServerError" class="TooltipErrorMessage"><p>$Text{"Date invalid!"}</p></div>
</div>
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Re: hide the "Pending Date (for pending* states): (Solved)
Crythias,
Thanks for your help!
Thanks for your help!