0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

EC-CUBE4 納品書出力のデフォを「ブラウザで開く」にする

Posted at

納品書出力の出力形式はデフォルトでは

  1. ファイルを保存
  2. ブラウザで開く

の順番だけど、ブラウザで開くを主に使うから順番を逆にして欲しいと言われたの
インターネッツの海を泳いでも出てこなかったので

src/Eccube/Form/Type/Admin/OrderPdfType.php

 ->add('download_kind', ChoiceType::class, [
                'choices' => [
-                  'admin.order.delivery_note_output_format__file' => 1,
-                  'admin.order.delivery_note_output_format__browser' => 2,
+                  'admin.order.delivery_note_output_format__browser' => 2,
+                  'admin.order.delivery_note_output_format__file' => 1,
                ],
                'expanded' => false,
                'multiple' => false,
                'required' => false,
                'mapped' => false,
                'placeholder' => false,
            ])

って順番を変えてやるだけでよかったです

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?