intervention-pages
Version:
19 lines (18 loc) • 643 B
JavaScript
import { ModelsBase } from '../../common/models/models.base';
// @lajos TO DO: check exactly where the values come from
// @lajos TO DO more: check with backend where the values are stored!!!!
export class BudgetSummary extends ModelsBase {
constructor(plannedBudget) {
super();
this.currency = '';
this.hq_rate = '';
this.prgm_effectiveness = '';
this.total_cso = '';
this.total_unicef = '';
this.total_supply = '';
this.partner_contrib = '';
this.total_cash = '';
this.total_amt = '';
this.setObjProperties(plannedBudget);
}
}