This might be a bug.
It concerns the ITSM module "Change Management" .
When I put certain state in "ITSM::ChangeManagement::Change::State" to invalid it succesfully saves it.
But when I want to change the state of a Change it shows the empty space where the state should have been.
I added a partial screenshot (it's in dutch, but it makes my point clear).
The page source shows me this:
Code: Select all
<label for="ChangeStateID">Status:</label>
<div class="Field">
<select name="ChangeStateID" id="ChangeStateID">
<option value="128" selected="selected">In uitvoering</option>
<option value="129"></option>
<option value="130">Succesvol</option>
<option value="131"></option>
<option value="132">Gecanceld</option>
<option value="133"></option>
</select>
I guess there's a check missing or something?
What I also found in the Database is this table "Change_State_Machine". It shows that State_id is connected to state_id 128 until 132, those are the ones that are showing up in the SelectBox. Some sort of link there I guess.
2nd think what I couldn't find. I put the default state on invalid, so whenever I create a Change there isn't a value filled in. How can I change the default state value for a new Change.
I ran the DeleteCache and REbuildConfig perl scripts and rebooted the Apache server without any luck.