Skip to content
Snippets Groups Projects
Commit fb4a9bfe authored by madhu sr's avatar madhu sr
Browse files

Added the storedname key value to the attachment details of the inventory...

 Added the storedname key value to the attachment details of the inventory modules which we use to get the filedetails when sending the mail with pdf
parent ffc67a9c
No related branches found
No related tags found
1 merge request!1055Fixes: Added the storedname key value to the attachment details of the inventory modules which we use to get the filedetails when sending the mail with pdf
......@@ -198,10 +198,6 @@ class Emails_MassSaveAjax_View extends Vtiger_Footer_View {
*/
$rawFileName = $existingAttachInfo['attachment'];
$file_name = $existingAttachInfo['storedname'];
// Checking becuase the pdf sent from sales order will not have the storedname
if(!$file_name) {
$file_name = $existingAttachInfo['attachment'];
}
$path = $existingAttachInfo['path'];
$fileId = $existingAttachInfo['fileid'];
......
......@@ -32,8 +32,10 @@ class Inventory_SendEmail_View extends Vtiger_ComposeEmail_View {
'attachment' =>$fileName,
'path' => implode('/',$fileComponents),
'size' => filesize($pdfFileName),
'type' => 'pdf',
'nondeletable' => true
'type' => 'pdf',
'nondeletable' => true,
// The stored name is needed to send the file with the email.
'storedname' => $fileName
));
$this->populateTo($request);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment