forked from verdnatura/hedera-web
Shelves width fixed
This commit is contained in:
parent
0477449c46
commit
1029660760
|
@ -1,4 +1,4 @@
|
|||
hedera-web (1.406.65) stable; urgency=low
|
||||
hedera-web (1.406.66) stable; urgency=low
|
||||
|
||||
* Initial Release.
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "hedera-web",
|
||||
"version": "1.406.65",
|
||||
"version": "1.406.66",
|
||||
"description": "Verdnatura web page",
|
||||
"license": "GPL-3.0",
|
||||
"repository": {
|
||||
|
|
|
@ -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({
|
||||
|
|
|
@ -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}";
|
||||
|
|
Loading…
Reference in New Issue