feat: add configuration module for managing branches, divisions, and customers
- Introduced a new Configuration module with routes for managing branches, divisions, and customers. - Implemented UI components for creating, editing, and viewing branch details, including general information, location, and working schedule. - Added validation schemas for branch data and integrated language support for English and Indonesian. - Developed comprehensive unit tests for the branches remote data service and transformer to ensure functionality and reliability. This commit enhances the application by providing a structured approach to configuration management, improving user experience and data handling.
This commit is contained in:
+1
-1
@@ -40,7 +40,7 @@ export function RowActionMenu({ data, onActionClick, statusKey = 'status', custo
|
||||
const isMasterData = moduleType === 'MASTER_DATA';
|
||||
|
||||
const isDataActive = status === 'active';
|
||||
const isDataInActive = status === 'inactive' || status === 'draft';
|
||||
const isDataInActive = status === 'inactive' || status === 'draft' || status === 'archived';
|
||||
|
||||
// View Details
|
||||
actions.push({
|
||||
|
||||
Reference in New Issue
Block a user