kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
122 lines
4.0 KiB
122 lines
4.0 KiB
//-- copyright
|
|
// OpenProject is an open source project management software.
|
|
// Copyright (C) 2012-2021 the OpenProject GmbH
|
|
//
|
|
// This program is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU General Public License version 3.
|
|
//
|
|
// OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
// Copyright (C) 2006-2013 Jean-Philippe Lang
|
|
// Copyright (C) 2010-2013 the ChiliProject Team
|
|
//
|
|
// This program is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU General Public License
|
|
// as published by the Free Software Foundation; either version 2
|
|
// of the License, or (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program; if not, write to the Free Software
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
//
|
|
// See docs/COPYRIGHT.rdoc for more details.
|
|
//++
|
|
|
|
import { Injectable } from "@angular/core";
|
|
import { HttpClient } from '@angular/common/http';
|
|
import { HalResourceNotificationService } from "core-app/modules/hal/services/hal-resource-notification.service";
|
|
|
|
@Injectable()
|
|
export class CostBudgetSubformAugmentService {
|
|
|
|
constructor(private halNotification:HalResourceNotificationService,
|
|
private http:HttpClient) {
|
|
}
|
|
|
|
listen() {
|
|
jQuery('costs-budget-subform').each((i, match) => {
|
|
const el = jQuery(match);
|
|
|
|
const container = el.find('.budget-item-container');
|
|
const templateEl = el.find('.budget-row-template');
|
|
templateEl.detach();
|
|
const template = templateEl[0].outerHTML;
|
|
let rowIndex = parseInt(el.attr('item-count') as string);
|
|
|
|
// Refresh row on changes
|
|
el.on('change', '.budget-item-value', (evt) => {
|
|
const row = jQuery(evt.target).closest('.cost_entry');
|
|
this.refreshRow(el, row.attr('id') as string);
|
|
});
|
|
|
|
el.on('click', '.delete-budget-item', (evt) => {
|
|
evt.preventDefault();
|
|
jQuery(evt.target).closest('.cost_entry').remove();
|
|
return false;
|
|
});
|
|
|
|
// Add new row handler
|
|
el.find('.budget-add-row').click((evt) => {
|
|
evt.preventDefault();
|
|
const row = jQuery(template.replace(/INDEX/g, rowIndex.toString()));
|
|
row.show();
|
|
row.removeClass('budget-row-template');
|
|
container.append(row);
|
|
rowIndex += 1;
|
|
return false;
|
|
});
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Refreshes the given row after updating values
|
|
*/
|
|
public refreshRow(el:JQuery, row_identifier:string) {
|
|
const row = el.find('#' + row_identifier);
|
|
const request = this.buildRefreshRequest(row, row_identifier);
|
|
|
|
this.http
|
|
.post(
|
|
el.attr('update-url')!,
|
|
request,
|
|
{
|
|
headers: { 'Accept': 'application/json' },
|
|
withCredentials: true
|
|
})
|
|
.subscribe(
|
|
(data:any) => {
|
|
_.each(data, (val:string, selector:string) => {
|
|
const element = document.getElementById(selector) as HTMLElement|HTMLInputElement|undefined;
|
|
if (element instanceof HTMLInputElement) {
|
|
element.value = val;
|
|
} else if (element) {
|
|
element.textContent = val;
|
|
}
|
|
});
|
|
},
|
|
(error:any) => this.halNotification.handleRawError(error)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Returns the params for the update request
|
|
*/
|
|
private buildRefreshRequest(row:JQuery, row_identifier:string) {
|
|
const request:any = {
|
|
element_id: row_identifier,
|
|
fixed_date: jQuery('#budget_fixed_date').val()
|
|
};
|
|
|
|
// Augment common values with specific values for this type
|
|
row.find('.budget-item-value').each((_i:number, el:any) => {
|
|
const field = jQuery(el);
|
|
request[field.data('requestKey')] = field.val() || '0';
|
|
});
|
|
|
|
return request;
|
|
}
|
|
}
|
|
|