Update Tiers functionality and enhance API documentation
- Changed the default value of the `$select` property in Tiers.php from `custid,custname` to `custid,name` to reflect valid column names. - Updated the tiers.blade.php view to align the placeholder for the select field with the new default value. - Enhanced the documentation for the `third_list` and `third_GetArtHistory` endpoints, detailing valid search columns, metadata, and response structures. - Added new tests in TiersPageTest.php to verify the default select value, API parameter handling, and metadata storage. - Overall, improved the user experience and API interaction for managing tiers.
This commit is contained in:
@@ -22,7 +22,7 @@ class Tiers extends Page
|
||||
|
||||
public string $mode = 'read';
|
||||
|
||||
public string $select = 'custid,custname';
|
||||
public string $select = 'custid,name';
|
||||
|
||||
public string $search = '';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user