I have looked around the forum, but could not find an answer to this question, though I realize I may be asking the wrong question.
I am an IT project manager and I have projects that require me to submit travel costs to our customers. For our government customers I have to ensure that costs do not exceed the Federal Travel Regulations. The costs vary from month to month and I'd like to include the static costs for each month in my form so that when I apply my XSL style sheet against it I can perform checks to make sure that we are in compliance.
Here is an example of what I'd like to include in each submitted form:
<PerDiem>
<Rate start="10/1/2011" end="10/31/2011">248.60</Rate>
<Rate start="11/1/2011" end="2/28/2012">201.30</Rate>
<Rate start="3/1/2012" end="6/30/2012">246.00</Rate>
<Rate start="7/1/2012" end="8/31/2012">185.90</Rate>
<Rate start="9/1/2012" end="9/31/2012">248.60</Rate>
<MealStart>53.25</MealStart>
<MealDuring>71.00</MealDuring>
</PerDiem>
However, I cannot figure out how to include this in the form. I was thinking it would just be a hidden entry that the employee never sees and would not be visible on the form, but I am open to suggestions.
Thanks!