Files
CRM/layouts/v7/modules/Inventory/resources/Detail.js
BACHIR SOULDI 2794e62571 first commit
2025-09-28 08:49:37 +01:00

82 lines
3.0 KiB
JavaScript

/*+***********************************************************************************
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
* The Initial Developer of the Original Code is vtiger.
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
*************************************************************************************/
Vtiger_Detail_Js("Inventory_Detail_Js", {
triggerRecordPreview: function(recordId){
var thisInstance = app.controller();
thisInstance.showRecordPreview(recordId);
},
sendEmailPDFClickHandler: function(url) {
var params = app.convertUrlToDataParams(url);
app.helper.showProgress();
app.request.post({data:params}).then(function(err,response){
var callback = function() {
var emailEditInstance = new Emails_MassEdit_Js();
emailEditInstance.registerEvents();
};
var data = {};
data['cb'] = callback;
app.helper.hideProgress();
app.helper.showModal(response,data);
});
},
},
{
showRecordPreview: function(recordId, templateId) {
var thisInstance = this;
var params = {};
var moduleName = app.getModuleName();
params['module'] = moduleName;
params['record'] = recordId;
params['view'] = 'InventoryQuickPreview';
params['navigation'] = 'false';
params['mode']='Detail';
if (templateId) {
params['templateid'] = templateId;
}
app.helper.showProgress();
app.request.get({data: params}).then(function(err, response) {
app.helper.hideProgress();
if (templateId) {
jQuery('#pdfViewer').html(response);
return;
}
app.helper.showModal(response, {'cb': function(modal) {
jQuery('.modal-dialog').css({"width": "870px"});
thisInstance.registerChangeTemplateEvent(modal, recordId);
}
});
});
},
registerChangeTemplateEvent: function(container, recordId) {
var thisInstance = this;
var select = container.find('#fieldList');
select.on("change", function() {
var templateId = select.val();
thisInstance.showRecordPreview(recordId, templateId);
});
},
registerEvents: function() {
var self = this;
this._super();
this.getDetailViewContainer().find('.inventoryLineItemDetails').popover({html: true});
app.event.on("post.relatedListLoad.click", function() {
self.getDetailViewContainer().find('.inventoryLineItemDetails').popover({html: true});
});
},
});