mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-14 16:49:17 +02:00
* Update web test methods in 'web/tests/'. * Added an 'RDSchedCode' class in 'lib/rdschedcode.cpp' and 'lib/rdschedcode.h'. * Implemented the 'ListSchedCodes' web method in 'web/rdxport/schedcodes.cpp'. * Implemented the 'AssignSchedCode' web method in 'web/rdxport/schedcodes.cpp'. * Implemented the 'UnassignSchedCode' web method in 'web/rdxport/schedcodes.cpp'. * Implemented the 'ListCartSchedCodes' web method in 'web/rdxport/schedcodes.cpp'. * Extended 'RDGetWebTime()' and 'RDGetWebDateTime()' functions to support XML 'xs' namespace formats. * Implemented '*_POINT' fields in the 'EditCut' web method in 'web/rdxport/carts.cpp'. * Modified the 'RDCart::removeSchedCode()' method so as to treat scheduler codes in a case-insensitve manner. * Modified the return of the 'EditCut' web method to provide a full <cutList> record in 'web/rdxport/carts.cpp'.
34 lines
890 B
HTML
34 lines
890 B
HTML
<html>
|
|
<head>
|
|
<title>Rivendell UNASSIGNSCHEDCODE Service Test Harness</title>
|
|
<body>
|
|
<form action="/rd-bin/rdxport.cgi" method="post" enctype="multipart/form-data">
|
|
<input type="hidden" name="COMMAND" value="26">
|
|
<table cellpadding="0" cellspacing="2" border="0">
|
|
<tr>
|
|
<td align="right">LOGIN NAME:</td>
|
|
<td><input type="text" name="LOGIN_NAME" size="20" maxlength="255"></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right">PASSWORD:</td>
|
|
<td><input type="password" name="PASSWORD" size="20" maxlength="32"></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right">CART NUMBER:</td>
|
|
<td><input type="text" name="CART_NUMBER" size="8" maxlength="6"></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right">CODE:</td>
|
|
<td><input type="text" name="CODE" size="12" maxlength="10"></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" align="right"> </td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" align="right"><input type="submit" value="OK"></td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</body>
|
|
</html>
|