Kind: Class
Source: Pams/Web/Pams.Web/Client/app/components/dashboard/dashboard-libary/widgets/mrm-total-sales/mrm-total-sales.component.ts (line 97)
Part of: Pams
MrmTotalSalesComponent is an Angular dashboard widget that retrieves and saves total-sales dashboard data, then calculates totals by year and month. It participates in Angular lifecycle hooks, handles authorization access, initializes widget state, and translates month names for display.
Methods
| Method | Signature | Returns |
|---|---|---|
GetAuthorizationAccess | GetAuthorizationAccess(url: string) | void |
ngOnInit | ngOnInit() | void |
ngOnChanges | ngOnChanges() | void |
ngOnDestroy | ngOnDestroy() | void |
getDashboardData | getDashboardData() | void |
initalizingData | initalizingData(value: BranchData[]) | void |
saveDashboardData | saveDashboardData() | void |
calculateSumByYear | calculateSumByYear() | void |
calculateSumByMonth | calculateSumByMonth(monthIndex: number) | void |
translateMonthName | translateMonthName(month: MonthData) | string |
getpriceFormatted | getpriceFormatted(x: undefined) | string |
onResize | onResize() | void |
setChaching | setChaching() | void |
getChaching | getChaching() | void |
switchWithTaxableHandler | switchWithTaxableHandler() | void |
switchVendorTypeIdHandler | switchVendorTypeIdHandler() | void |
onEnumIdChanged | onEnumIdChanged(e: undefined) | void |
switchChartTypeHandler | switchChartTypeHandler() | void |
switchBasedOnTendencyHandler | switchBasedOnTendencyHandler() | void |
comparingWithPrevMonth | comparingWithPrevMonth(month: MonthData, bIndex: number, monthIndex: number, propertyName: string) | string |
comparingBookingWithPrevSumm | comparingBookingWithPrevSumm(month: MonthsSum, index: number, propertyName: string) | string |
isCurrentMonth | isCurrentMonth(month: MonthData) | boolean |
getpriceForecastAmount | getpriceForecastAmount(month: MonthData) | number |
expectedCurrencyChange | expectedCurrencyChange(e: undefined) | void |
selectText | selectText(e: undefined) | void |
mouseoverRowSpan | mouseoverRowSpan(e: undefined, bIndex: number) | void |
mouseoutRowSpan | mouseoutRowSpan(e: undefined, bIndex: number) | void |
editSelectedMonthPrepare | editSelectedMonthPrepare(month: MonthData, supplierId: number) | void |
sorting | sorting(propertyName: string, propertyType: string, monthIndex: number) | void |
syncScroll | syncScroll(e: undefined) | void |
openPopup | openPopup(n: string, t: string, i: string, btnTxt: string) | void |
savePopup | savePopup() | void |
ClosewithDonotSave | ClosewithDonotSave() | void |
OnOpenedPopup | OnOpenedPopup() | void |
closePopup | closePopup() | void |
Properties
| Property | Type |
|---|---|
sharedPopup | SharedPopupComponent |
scrollOne | ElementRef |
_widget | Widget |
_widgetType | string |
withoutOptionBar | boolean |
editMode | boolean |
bookingOrSales | number |
withNominal | boolean |
withTaxable | boolean |
withTaxableBackup | boolean |
isPamsData | boolean |
enumId | number |
forecastRuleId | number |
allowedtoEdit | boolean |
allowedtoEnableEdting | boolean |
widgetEditRequest | any |
widgetEditEnd | any |
forecastRules | any[] |
calcMrmSalesBy | any |
selectedYear | number |
viewByDatasource | any[] |
todayWidgetsEnum | any |
cachingWidgetData | CachingWidgetData |
data | BranchData[] |
originalData | BranchData[] |
selectedData | BranchData[] |
singleMonths | MonthData |
branchCurrency | any |
basedOnTendency | boolean |
subscription | Subscription |
SeriseRange | any[] |
echartsIntance | any |
totalBookingMonths | MonthsSum[] |
tempMonthSum | MonthsSum |
totalTargets | number |
yearBooking | number |
totalForecasts | number |
tempTotalTarget | TotalTargets |
allGroupsTotalSales | number |
totalSalesAfterCommission | number |
totalPercentageOfAchievedSales | number |
totalDirectService | number |
totalDirectSalesWithoutScrap | number |
totalDirectSalesWithScrap | number |
totalTotalDirectSalesWithScrap | number |
totalCommission | number |
totalCumulativeSales | number |
popup | any |
searchText | string |
fixedColumnLeftNumOne | number |
Where it refuses work
MrmTotalSalesComponentstops the work with an early return whena[propertyName] < b[propertyName], in 2 places.MrmTotalSalesComponentstops the work with an early return whena[propertyName] > b[propertyName], in 2 places.MrmTotalSalesComponentstops the work with an early return whenmonth.MonthId == 12.MrmTotalSalesComponentstops the work with an early return whenmonth[propertyName] < this.data[bIndex].MrmTotalSalesGroups[monthIndex - 1][propertyName].MrmTotalSalesComponentstops the work with an early return whenmonth[propertyName] < this.totalBookingMonths[index - 1][propertyName].MrmTotalSalesComponentstops the work with an early return whenthis.allowedtoEnableEdting.
Diagram
mermaidgraph LR A[Angular Lifecycle] --> B[ngOnInit] A --> C[ngOnChanges] A --> D[ngOnDestroy] B --> E[GetAuthorizationAccess] B --> F[initalizingData] F --> G[getDashboardData] G --> H[calculateSumByYear] G --> I[calculateSumByMonth] I --> J[translateMonthName] K[Dashboard Configuration] --> L[saveDashboardData]
Usage
tsimport { Component, ViewChild } from '@angular/core';
import { MrmTotalSalesComponent } from './mrm-total-sales.component';
@Component({
selector: 'app-dashboard-page',
template: `
<app-mrm-total-sales #totalSalesWidget></app-mrm-total-sales>
<button type="button" (click)="refreshSalesData()">
Refresh sales data
</button>
`
})
export class DashboardPageComponent {
@ViewChild('totalSalesWidget')
totalSalesWidget!: MrmTotalSalesComponent;
refreshSalesData(): void {
this.totalSalesWidget.getDashboardData();
}
saveWidgetSettings(): void {
this.totalSalesWidget.saveDashboardData();
}
}
AI Coding Instructions
- Keep initialization logic inside
ngOnInit()and react to updated bound values throughngOnChanges(). - Preserve the existing
GetAuthorizationAccess()flow when adding dashboard data requests or save actions. - Use
initalizingData()for resetting or preparing widget state before processing dashboard results. - Keep year and month aggregation logic in
calculateSumByYear()andcalculateSumByMonth()rather than duplicating calculations in templates. - Clean up subscriptions, timers, or other retained resources in
ngOnDestroy().
Used by
3 references from 3 files. Each is a place in this repository where the symbol is actually used — go read one rather than trusting an example.
Imported by (3)
TranslateHandler—Pams/Web/Pams.Web/Client/app/app.module.ts:1DashboardTabComponent—Pams/Web/Pams.Web/Client/app/components/dashboard/dashboard-libary/dashboard-tab/dashboard-tab.component.ts:1ReportsTabComponent—Pams/Web/Pams.Web/Client/app/components/dashboard/reports-library/reports-tab/reports-tab.component.ts:1
Was this page helpful?