- Timestamp:
- 01/13/10 14:27:16 (2 years ago)
- Files:
-
- 1 modified
-
trunk/phpbms/modules/api/apiwrapper.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/phpbms/modules/api/apiwrapper.php
r751 r752 229 229 /* 230 230 * function searchClientByNameAndPostalcode 231 * @param $firstname232 * @param $lastname233 * @param $postalcode231 * @param name $firstname The first name to search for in the client's table 232 * @param name $lastname The last name to search for in the client's table 233 * @param name $postalcode The postal code to search for in the client's table 234 234 * @param array $options An associative array of options. Possible options are : 'useUuid' 235 235 * … … 260 260 /* 261 261 * function searchClientByUsernameAndPassword 262 * @param $username263 * @param $password262 * @param string $username The username to search for in the client's table 263 * @param string $password The password to search for in the client's table 264 264 * @param array $options An associative array of options. Possible options are : 'useUuid' 265 265 * … … 289 289 /* 290 290 * function searchSalesOrdersByClientUuid 291 * @param $clientuuid292 * @param $ordertype293 * @param $startdate294 * @param $enddate291 * @param string $clientuuid The uuid of a client record 292 * @param string $ordertype The type of the sales order. Possible types are :'Quote','Order','Invoice','VOID' 293 * @param string $startdate The sql encoded DATETIME lower range of creation dates. 294 * @param string $enddate The sql encoded DATETIME upper range of creation dates. 295 295 * @param array $options An associative array of options. Possible options are : 'useUuid' 296 296 *