Project

General

Profile

ClientProject #2380

Updated by Md.Sajib Ahmed 11 months ago

#### 1. Add `initialBalance` Field in Customer Module 
 - Include in **Create**, **Update**, and **View** forms. 
 - Update customer schema accordingly. 

 #### 2. Add Customer Balance Statements in Sidebar Menu 
 - Menu Path: `Sidebar > Reports > Customer Balance Statements` 
 - Create new page: `customer-balance-statements` 

 #### 2.1 Filter & Display Statement 
 - Select customer and date range to show balance data in a modal. 
 - Implement **print functionality** inside modal. 

 #### 2.2    API Integration 
 ```ts 
 const url = `/v1/reports/customer-balances/${customer}?from=${startDate.toISOString()}&to=${endDate.toISOString()}` 

Back