0
1
Fork 0

Shelves width fixed

This commit is contained in:
Juan Ferrer 2019-09-13 13:11:15 +02:00
parent 0477449c46
commit 1029660760
5 changed files with 11 additions and 7 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
hedera-web (1.406.65) stable; urgency=low
hedera-web (1.406.66) stable; urgency=low
* Initial Release.

2
debian/postinst vendored
View File

@ -10,6 +10,6 @@ then
apache2_invoke enconf hedera-web.conf
fi
#service php7.3-fpm restart
service php7.3-fpm restart
service cron restart

View File

@ -1,6 +1,6 @@
{
"name": "hedera-web",
"version": "1.406.65",
"version": "1.406.66",
"description": "Verdnatura web page",
"license": "GPL-3.0",
"repository": {

View File

@ -73,9 +73,9 @@ Hedera.ShelvesReport = new Class({
,name: res.get('Article')
,packing: res.get('packing')
,amount: res.get('etiquetas')
,boxHeight: res.get('z') * boxScale
,boxWidth: res.get('x') * boxScale
,boxDepth: res.get('y') * boxScale
,boxHeight: res.get('height') * boxScale
,boxWidth: res.get('width') * boxScale
,boxDepth: res.get('depth') * boxScale
});
} else {
remainings.push({

View File

@ -24,7 +24,11 @@ class Mail extends Vn\Lib\Method {
try {
$mail = $mailer->createObject($row->sender, $row->body, $row->subject);
$mail->AddReplyTo($row->replyTo, $row->replyTo);
if ($row->replyTo) {
$mail->AddReplyTo($row->replyTo, $row->replyTo);
//$mail->ReturnPath = $row->replyTo;
}
if (!empty($row->attachment)) {
$attachment = "$pdfsDir/{$row->attachment}";