app/Customize/Form/Type/Front/LoanType.php line 1247

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of EC-CUBE
  4.  *
  5.  * Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  6.  *
  7.  * http://www.ec-cube.co.jp/
  8.  *
  9.  * For the full copyright and license information, please view the LICENSE
  10.  * file that was distributed with this source code.
  11.  */
  12. namespace Customize\Form\Type\Front;
  13. use Eccube\Common\EccubeConfig;
  14. use Eccube\Form\Type\Master\PrefType;
  15. use Eccube\Form\Type\AddressType;
  16. use Eccube\Form\Type\KanaType;
  17. use Eccube\Form\Type\NameType;
  18. use Eccube\Form\Type\PhoneNumberType;
  19. use Eccube\Form\Type\PostalType;
  20. use Eccube\Form\Validator\Email;
  21. use Eccube\Form\Type\Master\SexType;
  22. use Eccube\Form\Type\Master\JobType;
  23. use Symfony\Component\Form\AbstractType;
  24. use Symfony\Component\Form\Extension\Core\Type\BirthdayType;
  25. use Symfony\Component\Form\Extension\Core\Type\EmailType;
  26. use Symfony\Component\Form\Extension\Core\Type\TextareaType;
  27. use Symfony\Component\Form\Extension\Core\Type\NumberType;
  28. use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
  29. use Symfony\Component\Form\Extension\Core\Type\TextType;
  30. use Symfony\Component\Form\Extension\Core\Type\FileType;
  31. use Symfony\Component\Form\Extension\Core\Type\CollectionType;
  32. use Symfony\Component\Form\Extension\Core\Type\HiddenType;
  33. use Symfony\Component\Form\Extension\Core\Type\DateTimeType;
  34. use Symfony\Component\Form\Extension\Core\Type\DateType;
  35. use Symfony\Component\Form\FormEvent;
  36. use Symfony\Component\Form\FormEvents;
  37. use Symfony\Bridge\Doctrine\Form\Type\EntityType;
  38. use Symfony\Component\Form\FormBuilderInterface;
  39. use Symfony\Component\Validator\Constraints as Assert;
  40. use Eccube\Repository\ProductRepository;
  41. use Eccube\Repository\CategoryRepository;
  42. use Customize\Service\FileUploader;
  43. class LoanType extends AbstractType
  44. {
  45.     /**
  46.      * @var EccubeConfig
  47.      */
  48.     protected $eccubeConfig;
  49.     /**
  50.      * @var FileUploader
  51.      */
  52.     protected $fileUploader;
  53.     protected $productRepository;
  54.     protected $categoryRepository;
  55.     /**
  56.      * ContactType constructor.
  57.      *
  58.      * @param EccubeConfig $eccubeConfig
  59.      */
  60.     public function __construct(
  61.         CategoryRepository $categoryRepository,
  62.         ProductRepository $productRepository,
  63.         EccubeConfig $eccubeConfig,
  64.         FileUploader $fileUploader) {
  65.         $this->categoryRepository $categoryRepository;
  66.         $this->productRepository $productRepository;
  67.         $this->eccubeConfig $eccubeConfig;
  68.         $this->fileUploader $fileUploader;
  69.     }
  70.     /**
  71.      * {@inheritdoc}
  72.      */
  73.     public function buildForm(FormBuilderInterface $builder, array $options)
  74.     {
  75.         // 【ご本人様について】
  76.         $builder
  77.             // お名前
  78.             ->add('name'NameType::class, [
  79.                 'required' => true,
  80.             ])
  81.             // フリガナ
  82.             ->add('kana'KanaType::class, [
  83.                 'required' => true,
  84.             ])
  85.             // 性別
  86.             ->add('sex'SexType::class, [
  87.                 'required' => true,
  88.             ])
  89.             // 生年月日
  90.             ->add('birth'BirthdayType::class, [
  91.                 'required' => true,
  92.                 'input' => 'datetime',
  93.                 'years' => range(date('Y'), date('Y') - $this->eccubeConfig['eccube_birth_max']),
  94.                 'widget' => 'choice',
  95.                 'placeholder' => ['year' => '----''month' => '--''day' => '--'],
  96.                 'constraints' => [
  97.                     new Assert\LessThanOrEqual([
  98.                         'value' => date('Y-m-d'strtotime('-1 day')),
  99.                         'message' => 'form_error.select_is_future_or_now_date',
  100.                     ]),
  101.                 ],
  102.             ])
  103.             // 郵便番号
  104.             ->add('postal_code'PostalType::class, [
  105.                 'required' => true,
  106.             ])
  107.             // 住所
  108.             ->add('address'AddressType::class, [
  109.                 'required' => true,
  110.             ])
  111.             // 電話番号(ご自宅)
  112.             ->add('tel_number_type'ChoiceType::class, [
  113.                 'choices'  => [
  114.                     '自宅' => '自宅',
  115.                     '呼び出し' => '呼び出し',
  116.                 ],
  117.                 'expanded' => true,
  118.                 'multiple' => false,
  119.                 'required' => true,
  120.             ])
  121.             // 電話番号(ご自宅)
  122.             ->add('tel_number'PhoneNumberType::class, [
  123.                 'required' => true,
  124.             ])
  125.             // 電話番号(携帯)
  126.             ->add('phone_number'PhoneNumberType::class, [
  127.                 'required' => true,
  128.             ])
  129.             // メールアドレス
  130.             ->add('email'EmailType::class, [
  131.                 'required' => true,
  132.                 'constraints' => [
  133.                     // new Assert\NotBlank(),
  134.                     new Email(nullnull$this->eccubeConfig['eccube_rfc_email_check'] ? 'strict' null),
  135.                 ],
  136.             ])
  137.             // 配偶者
  138.             ->add('spouse'ChoiceType::class, [
  139.                 'choices'  => [
  140.                     '有り' => '有り',
  141.                     '無し' => '無し',
  142.                 ],
  143.                 'expanded' => true,
  144.                 'multiple' => false,
  145.                 'required' => true,
  146.             ])
  147.             // 配偶者の職業
  148.             // ->add('spouse_job', JobType::class, [
  149.             //     'required' => true,
  150.             // ])
  151.             ->add('spouse_job'ChoiceType::class, [
  152.                 'choices'  => [
  153.                     '選択してください' => '',
  154.                     '公務員' => '公務員',
  155.                     '公的資格者' => '公的資格者',
  156.                     '会社員(内勤)' => '会社員(内勤)',
  157.                     '会社員(外勤)' => '会社員(外勤)',
  158.                     '自営業' => '自営業',
  159.                     '自由業' => '自由業',
  160.                     '臨時・パート・アルバイト' => '臨時・パート・アルバイト',
  161.                 ],
  162.                 'expanded' => false,
  163.                 'multiple' => false,
  164.                 'required' => true,
  165.             ])
  166.             // 世帯主とのご関係
  167.             ->add('relationship'ChoiceType::class, [
  168.                 'choices'  => [
  169.                     '本人' => '本人',
  170.                     '配偶者' => '配偶者',
  171.                     'その他' => 'その他',
  172.                 ],
  173.                 'expanded' => true,
  174.                 'multiple' => false,
  175.                 'required' => true,
  176.             ])
  177.             // 世帯主とのご関係
  178.             ->add('relationship_other'TextType::class, [
  179.                 'required' => false,
  180.             ])
  181.             // 世帯人数
  182.             ->add('people_cnt'TextType::class, [
  183.                 'required' => true,
  184.             ])
  185.             // 住宅ローン/家賃支払い
  186.             ->add('housing_loan'ChoiceType::class, [
  187.                 'choices'  => [
  188.                     '有り' => '有り',
  189.                     '無し' => '無し',
  190.                 ],
  191.                 'expanded' => true,
  192.                 'multiple' => false,
  193.                 'required' => true,
  194.             ])
  195.             // 住居区分
  196.             ->add('housing_type'ChoiceType::class, [
  197.                 'choices'  => [
  198.                     '選択してください' => '',
  199.                     '自己所有' => '自己所有',
  200.                     '家族所有' => '家族所有',
  201.                     '社宅・官舎' => '社宅・官舎',
  202.                     '借家' => '借家',
  203.                     '賃貸マンション' => '賃貸マンション',
  204.                     '公営・公団' => '公営・公団',
  205.                     'アパート' => 'アパート',
  206.                     '寮' => '寮',
  207.                     'その他' => 'その他',
  208.                 ],
  209.                 'expanded' => false,
  210.                 'multiple' => false,
  211.                 'required' => true,
  212.             ])
  213.             // 居住年数(年)
  214.             ->add('residence_year'TextType::class, [
  215.                 'required' => true,
  216.             ])
  217.             // 居住年数(月)
  218.             ->add('residence_month'TextType::class, [
  219.                 'required' => true,
  220.             ])
  221.             // 職業
  222.             // ->add('job', JobType::class, [
  223.             //     'required' => true,
  224.             // ])
  225.             ->add('job'ChoiceType::class, [
  226.                 'choices'  => [
  227.                     '選択してください' => '',
  228.                     '公務員' => '公務員',
  229.                     '公的資格者' => '公的資格者',
  230.                     '会社員(内勤)' => '会社員(内勤)',
  231.                     '会社員(外勤)' => '会社員(外勤)',
  232.                     '自営業' => '自営業',
  233.                     '自由業' => '自由業',
  234.                     '臨時・パート・アルバイト' => '臨時・パート・アルバイト',
  235.                 ],
  236.                 'expanded' => false,
  237.                 'multiple' => false,
  238.                 'required' => true,
  239.             ])
  240.             // 世帯主との居住状況
  241.             ->add('head_of_household'ChoiceType::class, [
  242.                 'choices'  => [
  243.                     '同居' => '同居',
  244.                     '別居' => '別居',
  245.                 ],
  246.                 'expanded' => true,
  247.                 'multiple' => false,
  248.                 'required' => true,
  249.             ])
  250.         ;
  251.         // 【お勤め先・ご収入について】
  252.         $builder
  253.             // 職種
  254.             // ->add('employed_job', JobType::class, [
  255.             //     'required' => true,
  256.             // ])
  257.             ->add('employed_job'ChoiceType::class, [
  258.                 'choices'  => [
  259.                     '選択してください' => '',
  260.                     '公務員' => '公務員',
  261.                     '公的資格者' => '公的資格者',
  262.                     '会社員(内勤)' => '会社員(内勤)',
  263.                     '会社員(外勤)' => '会社員(外勤)',
  264.                     '自営業' => '自営業',
  265.                     '自由業' => '自由業',
  266.                     '臨時・パート・アルバイト' => '臨時・パート・アルバイト',
  267.                 ],
  268.                 'expanded' => false,
  269.                 'multiple' => false,
  270.                 'required' => true,
  271.             ])
  272.             // 業種
  273.             ->add('employed_industry'ChoiceType::class, [
  274.                 'choices'  => [
  275.                     '選択してください' => '',
  276.                     '公務員' => '公務員',
  277.                     '公的資格者' => '公的資格者',
  278.                     '一次産業' => '一次産業',
  279.                     '鉱業' => '鉱業',
  280.                     '土木・建築' => '土木・建築',
  281.                     '不動産' => '不動産',
  282.                     '金融' => '金融',
  283.                     '運輸・倉庫' => '運輸・倉庫',
  284.                     '製造' => '製造',
  285.                     '卸' => '卸',
  286.                     '小売' => '小売',
  287.                     '情報・通信' => '情報・通信',
  288.                     '旅行宿泊' => '旅行宿泊',
  289.                     'その他サービス' => 'その他サービス',
  290.                     '医療機関' => '医療機関',
  291.                     '組合団体' => '組合団体',
  292.                     '施設・期間' => '施設・期間',
  293.                     '個人業' => '個人業',
  294.                     'その他' => 'その他',
  295.                 ],
  296.                 'expanded' => false,
  297.                 'multiple' => false,
  298.                 'required' => true,
  299.             ])
  300.             // お勤め先(派遣元)
  301.             ->add('employed_company'TextType::class, [
  302.                 'required' => true,
  303.             ])
  304.             // お勤め先フリガナ
  305.             ->add('employed_company_kana'TextType::class, [
  306.                 'required' => true,
  307.             ])
  308.             // お勤め先住所 郵便番号
  309.             ->add('employed_postal_code'PostalType::class, [
  310.                 'required' => true,
  311.             ])
  312.             // お勤め先住所
  313.             // ->add('employed_address', AddressType::class, [
  314.             //     'required' => true,
  315.             // ])
  316.             ->add('employed_address_pref'PrefType::class, [
  317.                 'required' => true,
  318.             ])
  319.             ->add('employed_address_addr01'TextType::class, [
  320.                 'required' => true,
  321.             ])
  322.             ->add('employed_address_addr02'TextType::class, [
  323.                 'required' => true,
  324.             ])
  325.             // お勤め先電話番号
  326.             ->add('employed_phone_number'PhoneNumberType::class, [
  327.                 'required' => true,
  328.             ])
  329.             // 勤続年数(年)
  330.             ->add('employed_year'TextType::class, [
  331.                 'required' => true,
  332.             ])
  333.             // 勤続年数(月)
  334.             ->add('employed_month'TextType::class, [
  335.                 'required' => true,
  336.             ])
  337.             // 税込年収
  338.             ->add('employed_income'TextType::class, [
  339.                 'required' => true,
  340.             ])
  341.             // 従業員数
  342.             ->add('employed_cnt'ChoiceType::class, [
  343.                 'choices'  => [
  344.                     '10' => '10'//TODO: ???
  345.                     '20' => '20',
  346.                 ],
  347.                 'expanded' => false,
  348.                 'multiple' => false,
  349.                 'required' => true,
  350.             ])
  351.             // 出向先・派遣先電話番号
  352.             ->add('employed_company_phone_number'PhoneNumberType::class, [
  353.                 'required' => false,
  354.             ])
  355.         ;
  356.         // 【主婦・年金受給者の方】
  357.         $builder
  358.             // 世帯主お名前
  359.             ->add('pensioner_name'NameType::class, [
  360.                 'required' => true,
  361.             ])
  362.             // フリガナ
  363.             ->add('pensioner_kana'KanaType::class, [
  364.                 'required' => true,
  365.             ])
  366.             // 世帯主税込年収
  367.             ->add('pensioner_income'TextType::class, [
  368.                 'required' => true,
  369.             ])
  370.             // 世帯主のお支払中の クレジット返済額
  371.             ->add('household_paying'ChoiceType::class, [
  372.                 'choices'  => [
  373.                     '有り' => '有り',
  374.                     '無し' => '無し',
  375.                 ],
  376.                 'expanded' => true,
  377.                 'multiple' => false,
  378.                 'required' => true,
  379.             ])
  380.             // 世帯主のお支払中の クレジット返済額
  381.             ->add('household_paying_amount'TextType::class, [
  382.                 'required' => true,
  383.             ])
  384.             // 年金の種類
  385.             ->add('pensioner_type'ChoiceType::class, [
  386.                 'choices'  => [
  387.                     '国民' => '国民',
  388.                     '厚生' => '厚生',
  389.                     '共済' => '共済',
  390.                     'その他' => 'その他',
  391.                 ],
  392.                 'expanded' => true,
  393.                 'multiple' => true,
  394.                 'required' => true,
  395.             ])
  396.             // 年金の種類
  397.             ->add('pensioner_type_other'TextType::class, [
  398.                 'required' => false,
  399.             ])
  400.             // 年金以外の収入
  401.             ->add('pensioner_income_other'ChoiceType::class, [
  402.                 'choices'  => [
  403.                     '有り' => '有り',
  404.                     '無し' => '無し',
  405.                 ],
  406.                 'expanded' => true,
  407.                 'multiple' => false,
  408.                 'required' => true,
  409.             ])
  410.             // 今回のお支払い
  411.             ->add('pensioner_payment'ChoiceType::class, [
  412.                 'choices'  => [
  413.                     '年金' => '年金',
  414.                     '不動産収入' => '不動産収入',
  415.                     'その他' => 'その他',
  416.                 ],
  417.                 'expanded' => true,
  418.                 'multiple' => true,
  419.                 'required' => true,
  420.             ])
  421.             // 今回のお支払い
  422.             ->add('pensioner_payment_other'TextType::class, [
  423.                 'required' => false,
  424.             ])
  425.             // お勤め先電話番号
  426.             ->add('pensioner_company_phone_number'PhoneNumberType::class, [
  427.                 'required' => true,
  428.             ])
  429.             // 年金受給者の税込年収
  430.             ->add('pensioner_income2'TextType::class, [
  431.                 'required' => true,
  432.             ])
  433.             // 口座名義人
  434.             ->add('pensioner_acount'ChoiceType::class, [
  435.                 'choices'  => [
  436.                     '申込者' => '申込者',
  437.                     '申込者以外' => '申込者以外',
  438.                 ],
  439.                 'expanded' => true,
  440.                 'multiple' => false,
  441.                 'required' => true,
  442.             ])
  443.         ;
  444.         // 【連帯保証人の方】
  445.         $builder
  446.             // お名前
  447.             ->add('guarantor_name'NameType::class, [
  448.                 'required' => true,
  449.             ])
  450.             // フリガナ
  451.             ->add('guarantor_kana'KanaType::class, [
  452.                 'required' => true,
  453.             ])
  454.             // 性別
  455.             ->add('guarantor_sex'SexType::class, [
  456.                 'required' => true,
  457.             ])
  458.             // 生年月日
  459.             ->add('guarantor_birth'BirthdayType::class, [
  460.                 'required' => true,
  461.                 'input' => 'datetime',
  462.                 'years' => range(date('Y'), date('Y') - $this->eccubeConfig['eccube_birth_max']),
  463.                 'widget' => 'choice',
  464.                 'placeholder' => ['year' => '----''month' => '--''day' => '--'],
  465.                 'constraints' => [
  466.                     new Assert\LessThanOrEqual([
  467.                         'value' => date('Y-m-d'strtotime('-1 day')),
  468.                         'message' => 'form_error.select_is_future_or_now_date',
  469.                     ]),
  470.                 ],
  471.             ])
  472.             // 郵便番号
  473.             ->add('guarantor_postal_code'PostalType::class, [
  474.                 'required' => true,
  475.             ])
  476.             // 住所
  477.             // ->add('guarantor_address', AddressType::class, [
  478.             //     'required' => true,
  479.             // ])
  480.             ->add('guarantor_address_pref'PrefType::class, [
  481.                 'required' => true,
  482.             ])
  483.             ->add('guarantor_address_addr01'TextType::class, [
  484.                 'required' => true,
  485.             ])
  486.             ->add('guarantor_address_addr02'TextType::class, [
  487.                 'required' => true,
  488.             ])
  489.             // 電話番号(ご自宅)
  490.             ->add('guarantor_tel_number_type'ChoiceType::class, [
  491.                 'choices'  => [
  492.                     '自宅' => '自宅',
  493.                     '呼び出し' => '呼び出し',
  494.                 ],
  495.                 'expanded' => true,
  496.                 'multiple' => false,
  497.                 'required' => true,
  498.             ])
  499.             // 電話番号(ご自宅)
  500.             ->add('guarantor_tel_number'PhoneNumberType::class, [
  501.                 'required' => true,
  502.             ])
  503.             // 電話番号(携帯)
  504.             ->add('guarantor_phone_number'PhoneNumberType::class, [
  505.                 'required' => true,
  506.             ])
  507.             // メールアドレス (半角英数字)
  508.             ->add('guarantor_email'EmailType::class, [
  509.                 'required' => true,
  510.                 'constraints' => [
  511.                     // new Assert\NotBlank(),
  512.                     new Email(nullnull$this->eccubeConfig['eccube_rfc_email_check'] ? 'strict' null),
  513.                 ],
  514.             ])
  515.             // メールアドレス確認用 (半角英数字)
  516.             ->add('guarantor_email_confirm'EmailType::class, [
  517.                 'required' => true,
  518.                 'constraints' => [
  519.                     // new Assert\NotBlank(),
  520.                     new Email(nullnull$this->eccubeConfig['eccube_rfc_email_check'] ? 'strict' null),
  521.                 ],
  522.             ])
  523.             // 契約者との続柄
  524.             ->add('guarantor_relation'TextType::class, [
  525.                 'required' => true,
  526.             ])
  527.             // 職業
  528.             // ->add('guarantor_job', JobType::class, [
  529.             //     'required' => true,
  530.             // ])
  531.             ->add('guarantor_job'ChoiceType::class, [
  532.                 'choices'  => [
  533.                     '選択してください' => '',
  534.                     '公務員' => '公務員',
  535.                     '公的資格者' => '公的資格者',
  536.                     '会社員(内勤)' => '会社員(内勤)',
  537.                     '会社員(外勤)' => '会社員(外勤)',
  538.                     '自営業' => '自営業',
  539.                     '自由業' => '自由業',
  540.                     '臨時・パート・アルバイト' => '臨時・パート・アルバイト',
  541.                 ],
  542.                 'expanded' => false,
  543.                 'multiple' => false,
  544.                 'required' => true,
  545.             ])
  546.             // 業種
  547.             ->add('guarantor_industry'ChoiceType::class, [
  548.                 'choices'  => [
  549.                     '選択してください' => '',
  550.                     '公務員' => '公務員',
  551.                     '公的資格者' => '公的資格者',
  552.                     '一次産業' => '一次産業',
  553.                     '鉱業' => '鉱業',
  554.                     '土木・建築' => '土木・建築',
  555.                     '不動産' => '不動産',
  556.                     '金融' => '金融',
  557.                     '運輸・倉庫' => '運輸・倉庫',
  558.                     '製造' => '製造',
  559.                     '卸' => '卸',
  560.                     '小売' => '小売',
  561.                     '情報・通信' => '情報・通信',
  562.                     '旅行宿泊' => '旅行宿泊',
  563.                     'その他サービス' => 'その他サービス',
  564.                     '医療機関' => '医療機関',
  565.                     '組合団体' => '組合団体',
  566.                     '施設・期間' => '施設・期間',
  567.                     '個人業' => '個人業',
  568.                     'その他' => 'その他',
  569.                 ],
  570.                 'expanded' => false,
  571.                 'multiple' => false,
  572.                 'required' => true,
  573.             ])
  574.             // お勤め先(派遣元)
  575.             ->add('guarantor_company'TextType::class, [
  576.                 'required' => true,
  577.             ])
  578.             // お勤め先フリガナ
  579.             ->add('guarantor_company_kana'TextType::class, [
  580.                 'required' => true,
  581.             ])
  582.             // お勤め先住所 郵便番号
  583.             ->add('guarantor_company_postal_code'PostalType::class, [
  584.                 'required' => true,
  585.             ])
  586.             // お勤め先住所
  587.             // ->add('guarantor_company_address', AddressType::class, [
  588.             //     'required' => true,
  589.             // ])
  590.             ->add('guarantor_company_address_pref'PrefType::class, [
  591.                 'required' => true,
  592.             ])
  593.             ->add('guarantor_company_address_addr01'TextType::class, [
  594.                 'required' => true,
  595.             ])
  596.             ->add('guarantor_company_address_addr02'TextType::class, [
  597.                 'required' => true,
  598.             ])
  599.             // お勤め先電話番号
  600.             ->add('guarantor_company_phone_number'PhoneNumberType::class, [
  601.                 'required' => true,
  602.             ])
  603.             // 勤続年数(年)
  604.             ->add('guarantor_year'TextType::class, [
  605.                 'required' => true,
  606.             ])
  607.             // 勤続年数(月)
  608.             ->add('guarantor_month'TextType::class, [
  609.                 'required' => true,
  610.             ])
  611.             // 税込年収
  612.             ->add('guarantor_income'TextType::class, [
  613.                 'required' => true,
  614.             ])
  615.             // 従業員数
  616.             ->add('guarantor_cnt'ChoiceType::class, [
  617.                 'choices'  => [
  618.                     '10' => '10'//TODO: ???
  619.                     '20' => '20',
  620.                 ],
  621.                 'expanded' => false,
  622.                 'multiple' => false,
  623.                 'required' => true,
  624.             ])
  625.             // 出向先・派遣先電話番号
  626.             ->add('guarantor_company_phone_number2'PhoneNumberType::class, [
  627.                 'required' => false,
  628.             ])
  629.         ;
  630.         // 工事項目
  631.         $builder
  632.             ->add('express_tickets_price'HiddenType::class, [])
  633.             ->add('construction_air'HiddenType::class, [])
  634.             ->add('construction_6'NumberType::class, [])
  635.             ->add('construction_16'NumberType::class, [])
  636.             ->add('construction_23'NumberType::class, [])
  637.             ->add('number_install'HiddenType::class, [])
  638.             ->add('number_install_price'HiddenType::class, [])
  639.             ->add('construction_type_07_02_v1_price'HiddenType::class, [])
  640.             ->add('construction_type_07_03_v2_price'HiddenType::class, [])
  641.             ->add('construction_type_07_04_v1_price'HiddenType::class, [])
  642.             ->add('construction_type_07_04_v2_price'HiddenType::class, [])
  643.             ->add('construction_type_07_04_v3_price'HiddenType::class, [])
  644.             ->add('elevator_07_price'HiddenType::class, [])
  645.             ->add('electrical_outlet_07_price'HiddenType::class, [])
  646.             ->add('electrical_outlet_07_02_price'HiddenType::class, [])
  647.             ->add('room_size_07_03_v1_price'HiddenType::class, [])
  648.             ->add('room_size_07_03_v2_price'HiddenType::class, [])
  649.             ->add('piping_status_07_02_price'HiddenType::class, [])
  650.             ->add('indoor_cover_07_price'HiddenType::class, [])
  651.             ->add('outdoor_cover_02_price'HiddenType::class, [])
  652.             ->add('construction_outdoor_07_price'HiddenType::class, [])
  653.             ->add('construction_method_07_v1_price'HiddenType::class, [])
  654.             ->add('construction_method_07_v2_price'HiddenType::class, [])
  655.             ->add('construction_base_price_1'HiddenType::class, [])
  656.             ->add('construction_base_price_2'HiddenType::class, [])
  657.             ->add('construction_base_price_3'HiddenType::class, [])
  658.             ->add('construction_total_price'HiddenType::class, [])
  659.             ->add('construction_discount'HiddenType::class, [])
  660.             ->add('product_total_price'HiddenType::class, [])
  661.             //希望する工事
  662.             ->add('desired_construction_work'ChoiceType::class, [
  663.                 'choices'  => [
  664.                     '本体のみ' => '本体のみ',
  665.                     '本体+設置工事' => '本体+設置工事',
  666.                 ],
  667.                 'expanded' => true,
  668.                 'multiple' => false,
  669.                 'required' => false,
  670.             ])
  671.             //希望する工事 → 本体+設置工事
  672.             ->add('desired_construction_work_02'ChoiceType::class, [
  673.                 'choices'  => [
  674.                     '最終金額算出' => '最終金額算出',
  675.                     '新居等への引越しのため設置場所の詳細確認不可' => '新居等への引越しのため設置場所の詳細確認不可',
  676.                 ],
  677.                 'expanded' => true,
  678.                 'multiple' => false,
  679.                 'required' => false,
  680.             ])
  681.             // 特急券の購入
  682.             ->add('express_tickets'ChoiceType::class, [
  683.                 'choices'  => [
  684.                     'する' => 'する',
  685.                     'しない' => 'しない',
  686.                 ],
  687.                 'expanded' => true,
  688.                 'multiple' => false,
  689.                 'required' => false,
  690.                 'choice_attr' => function($choice$key$value) {
  691.                     if ($choice === 'する') {
  692.                         return ['price' => 5500];
  693.                     } elseif ($choice === 'しない') {
  694.                         return ['price' => 0];
  695.                     }
  696.                     return [];
  697.                 },
  698.             ])
  699.             // お住まい
  700.             ->add('osumai'ChoiceType::class, [
  701.                 'choices'  => [
  702.                     '一戸建て' => '一戸建て',
  703.                     '集合住宅' => '集合住宅',
  704.                 ],
  705.                 'expanded' => true,
  706.                 'multiple' => false,
  707.                 'required' => false,
  708.             ])
  709.             // 建物の所有
  710.             ->add('building_ownership'ChoiceType::class, [
  711.                 'choices'  => [
  712.                     '持ち家' => '持ち家',
  713.                     '賃貸' => '賃貸',
  714.                 ],
  715.                 'expanded' => true,
  716.                 'multiple' => false,
  717.                 'required' => false,
  718.             ])
  719.             // 構造
  720.             ->add('structure'ChoiceType::class, [
  721.                 'choices'  => [
  722.                     '木造' => '木造',
  723.                     '鉄骨' => '鉄骨',
  724.                     'コンクリート(RC)' => 'コンクリート(RC)',
  725.                     'その他' => 'その他',
  726.                     '不明' => '不明',
  727.                 ],
  728.                 'expanded' => true,
  729.                 'multiple' => false,
  730.                 'required' => false,
  731.             ])
  732.             // // 設置台数
  733.             // ->add('number_install', ChoiceType::class, [
  734.             //     'choices'  => [
  735.             //         '1台' => '1台',
  736.             //         '2台' => '2台',
  737.             //         '3台' => '3台',
  738.             //         '4台以上' => '4台以上',
  739.             //     ],
  740.             //     'expanded' => true,
  741.             //     'multiple' => false,
  742.             //     'required' => false,
  743.             //     'choice_attr' => function($choice, $key, $value) {
  744.             //         if ($choice === '1台') {
  745.             //             return ['percent' => 0];
  746.             //         } elseif ($choice === '2台') {
  747.             //             return ['percent' => 0.05];
  748.             //         } elseif ($choice === '3台') {
  749.             //             return ['percent' => 0.1];
  750.             //         } elseif ($choice === '4台以上') {
  751.             //             return ['percent' => 0.15];
  752.             //         }
  753.             //         return [];
  754.             //     },
  755.             // ])            
  756.             //工事希望日1
  757.             ->add('construction_date_1'DateType::class, [
  758.                 'required' => false,
  759.                 'input' => 'datetime',
  760.                 'widget' => 'single_text',
  761.                 'placeholder' => ['year' => '----''month' => '--''day' => '--'],
  762.             ])
  763.             //工事希望日2
  764.             ->add('construction_date_2'DateType::class, [
  765.                 'required' => false,
  766.                 'input' => 'datetime',
  767.                 'widget' => 'single_text',
  768.                 'placeholder' => ['year' => '----''month' => '--''day' => '--'],
  769.             ])
  770.             //工事希望日3
  771.             ->add('construction_date_3'DateType::class, [
  772.                 'required' => false,
  773.                 'input' => 'datetime',
  774.                 'widget' => 'single_text',
  775.                 'placeholder' => ['year' => '----''month' => '--''day' => '--'],
  776.             ])
  777.             // 希望時間帯_1
  778.             ->add('time_slot_1'ChoiceType::class, [
  779.                 'choices'  => [
  780.                     '午前' => '午前',
  781.                     '午後' => '午後',
  782.                 ],
  783.                 'expanded' => true,
  784.                 'multiple' => false,
  785.                 'required' => false,
  786.             ])
  787.             // 希望時間帯_2
  788.             ->add('time_slot_2'ChoiceType::class, [
  789.                 'choices'  => [
  790.                     '午前' => '午前',
  791.                     '午後' => '午後',
  792.                 ],
  793.                 'expanded' => true,
  794.                 'multiple' => false,
  795.                 'required' => false,
  796.             ])
  797.             // 希望時間帯_3
  798.             ->add('time_slot_3'ChoiceType::class, [
  799.                 'choices'  => [
  800.                     '午前' => '午前',
  801.                     '午後' => '午後',
  802.                 ],
  803.                 'expanded' => true,
  804.                 'multiple' => false,
  805.                 'required' => false,
  806.             ])
  807.             //その他希望
  808.             ->add('contents'TextareaType::class, [
  809.                 'required' => false,
  810.                 'constraints' => [
  811.                     // new Assert\NotBlank(),
  812.                     new Assert\Length([
  813.                         'max' => $this->eccubeConfig['eccube_lltext_len'],
  814.                     ])
  815.                 ],
  816.             ])
  817.             // 工事内訳
  818.             ->add('construction_type_07'ChoiceType::class, [
  819.                 'choices'  => [
  820.                     '新設' => '新設',
  821.                     '交換' => '交換',
  822.                     '新設工事に加えて移設工事も希望' => '新設工事に加えて移設工事も希望',
  823.                 ],
  824.                 'expanded' => true,
  825.                 'multiple' => false,
  826.                 'required' => false,
  827.             ])
  828.             // 工事内訳 → 交換
  829.             ->add('construction_type_07_02_v1'ChoiceType::class, [
  830.                 'choices'  => [
  831.                     '処分を希望する(リサイクル&収集運搬費)' => '処分を希望する(リサイクル&収集運搬費)',
  832.                     '処分を希望しない' => '処分を希望しない',
  833.                 ],
  834.                 'expanded' => true,
  835.                 'multiple' => false,
  836.                 'required' => false,
  837.                 'choice_attr' => function($choice$key$value) {
  838.                     if ($choice === '処分を希望する(リサイクル&収集運搬費)') {
  839.                         return ['price' => 7180];
  840.                     } elseif ($choice === '処分を希望しない') {
  841.                         return ['price' => 5980];
  842.                     }
  843.                     return [];
  844.                 },
  845.             ])
  846.             // 工事内訳 → 新設工事に加えて移設工事も希望
  847.             ->add('construction_type_07_02_v2'ChoiceType::class, [
  848.                 'choices'  => [
  849.                     '分解洗浄を希望する' => '分解洗浄を希望する',
  850.                     '分解洗浄を希望しない' => '分解洗浄を希望しない',
  851.                 ],
  852.                 'expanded' => true,
  853.                 'multiple' => false,
  854.                 'required' => false,
  855.             ])
  856.             // 工事内訳 → 新設工事に加えて移設工事も希望 → 分解洗浄を希望する
  857.             ->add('construction_type_07_03_v1'ChoiceType::class, [
  858.                 'choices'  => [
  859.                     '移設6~14畳(取外し含む)' => '移設6~14畳(取外し含む)',
  860.                     '移設16~20畳(取外し含む)' => '移設16~20畳(取外し含む)',
  861.                     '移設23畳~(取外し含む)' => '移設23畳~(取外し含む)',
  862.                 ],
  863.                 'expanded' => true,
  864.                 'multiple' => false,
  865.                 'required' => false,
  866.             ])
  867.             // 工事内訳 → 新設工事に加えて移設工事も希望 → 分解洗浄を希望しない
  868.             ->add('construction_type_07_03_v2'ChoiceType::class, [
  869.                 'choices'  => [
  870.                     '移設6~14畳(取外し含む)' => '移設6~14畳(取外し含む)',
  871.                     '移設16~20畳(取外し含む)' => '移設16~20畳(取外し含む)',
  872.                     '移設23畳~(取外し含む)' => '移設23畳~(取外し含む)',
  873.                 ],
  874.                 'expanded' => true,
  875.                 'multiple' => false,
  876.                 'required' => false,
  877.                 'choice_attr' => function($choice$key$value) {
  878.                     if ($choice === '移設6~14畳(取外し含む)') {
  879.                         return ['price' => 24980];
  880.                     } elseif ($choice === '移設16~20畳(取外し含む)') {
  881.                         return ['price' => 28980];
  882.                     } elseif ($choice === '移設23畳~(取外し含む)') {
  883.                         return ['price' => 32980];
  884.                     }
  885.                     return [];
  886.                 },
  887.             ])
  888.             // 工事内訳 → 新設工事に加えて移設工事も希望 → 分解洗浄を希望する → 移設6~14畳(取外し含む)
  889.             ->add('construction_type_07_04_v1'ChoiceType::class, [
  890.                 'choices'  => [
  891.                     '掃除機能付き' => '掃除機能付き',
  892.                     '掃除機能なし' => '掃除機能なし',
  893.                 ],
  894.                 'expanded' => true,
  895.                 'multiple' => false,
  896.                 'required' => false,
  897.                 'choice_attr' => function($choice$key$value) {
  898.                     if ($choice === '掃除機能付き') {
  899.                         return ['price' => 50980];
  900.                     } elseif ($choice === '掃除機能なし') {
  901.                         return ['price' => 47980];
  902.                     }
  903.                     return [];
  904.                 },
  905.             ])
  906.             // 工事内訳 → 新設工事に加えて移設工事も希望 → 分解洗浄を希望する → 移設16~20畳(取外し含む)
  907.             ->add('construction_type_07_04_v2'ChoiceType::class, [
  908.                 'choices'  => [
  909.                     '掃除機能付き' => '掃除機能付き',
  910.                     '掃除機能なし' => '掃除機能なし',
  911.                 ],
  912.                 'expanded' => true,
  913.                 'multiple' => false,
  914.                 'required' => false,
  915.                 'choice_attr' => function($choice$key$value) {
  916.                     if ($choice === '掃除機能付き') {
  917.                         return ['price' => 54980];
  918.                     } elseif ($choice === '掃除機能なし') {
  919.                         return ['price' => 51980];
  920.                     }
  921.                     return [];
  922.                 },
  923.             ])
  924.             // 工事内訳 → 新設工事に加えて移設工事も希望 → 分解洗浄を希望する → 移設23畳~(取外し含む)
  925.             ->add('construction_type_07_04_v3'ChoiceType::class, [
  926.                 'choices'  => [
  927.                     '掃除機能付き' => '掃除機能付き',
  928.                     '掃除機能なし' => '掃除機能なし',
  929.                 ],
  930.                 'expanded' => true,
  931.                 'multiple' => false,
  932.                 'required' => false,
  933.                 'choice_attr' => function($choice$key$value) {
  934.                     if ($choice === '掃除機能付き') {
  935.                         return ['price' => 58980];
  936.                     } elseif ($choice === '掃除機能なし') {
  937.                         return ['price' => 55980];
  938.                     }
  939.                     return [];
  940.                 },
  941.             ])
  942.             // エアコン設置場所
  943.             ->add('construction_floor_07'ChoiceType::class, [
  944.                 'choices'  => [
  945.                     '1階' => '1階',
  946.                     '2階' => '2階',
  947.                     '3階' => '3階',
  948.                     '4階以上' => '4階以上',
  949.                     '未定' => '未定',
  950.                 ],
  951.                 'expanded' => true,
  952.                 'multiple' => false,
  953.                 'required' => false,
  954.             ])
  955.             // エレベーターの有無
  956.             ->add('elevator_07'ChoiceType::class, [
  957.                 'choices'  => [
  958.                     'あり' => 'あり',
  959.                     'なし(新設)' => 'なし(新設)',
  960.                     'なし(交換)' => 'なし(交換)',
  961.                 ],
  962.                 'expanded' => true,
  963.                 'multiple' => false,
  964.                 'required' => false,
  965.                 'choice_attr' => function($choice$key$value) {
  966.                     if ($choice === 'あり') {
  967.                         return ['price' => 0];
  968.                     } elseif ($choice === 'なし(新設)') {
  969.                         return ['price' => 5980];
  970.                     } elseif ($choice === 'なし(交換)') {
  971.                         return ['price' => 11980];
  972.                     }
  973.                     return [];
  974.                 },
  975.             ])
  976.             // コンセントの有無
  977.             ->add('electrical_outlet_07'ChoiceType::class, [
  978.                 'choices'  => [
  979.                     'あり' => 'あり',
  980.                     'なし(別途工事が必要になります)' => 'なし(別途工事が必要になります)',
  981.                     '不明' => '不明',
  982.                 ],
  983.                 'expanded' => true,
  984.                 'multiple' => false,
  985.                 'required' => false,
  986.                 'choice_attr' => function($choice$key$value) {
  987.                     if ($choice === 'なし(別途工事が必要になります)') {
  988.                         return ['price' => 16980];
  989.                     }
  990.                     return [];
  991.                 },
  992.             ])
  993.             // コンセントの有無 → あり
  994.             ->add('electrical_outlet_07_02'ChoiceType::class, [
  995.                 'choices'  => [
  996.                     '既存コンセントの延長の有' => '既存コンセントの延長の有',
  997.                     '既存コンセントの延長の無' => '既存コンセントの延長の無',
  998.                 ],
  999.                 'expanded' => true,
  1000.                 'multiple' => false,
  1001.                 'required' => false,
  1002.                 'choice_attr' => function($choice$key$value) {
  1003.                     if ($choice === '既存コンセントの延長の有') {
  1004.                         return ['price' => 3980];
  1005.                     } elseif ($choice === '既存コンセントの延長の無') {
  1006.                         return ['price' => 0];
  1007.                     }
  1008.                     return [];
  1009.                 },
  1010.             ])
  1011.             // 建物の契約アンペア
  1012.             ->add('contract_amp'ChoiceType::class, [
  1013.                 'choices'  => [
  1014.                     '30A' => '30A',
  1015.                     '40A' => '40A',
  1016.                     '50A' => '50A',
  1017.                     '50A以上' => '50A以上',
  1018.                     '不明' => '不明',
  1019.                 ],
  1020.                 'expanded' => true,
  1021.                 'multiple' => false,
  1022.                 'required' => false,
  1023.             ])
  1024.             // コンセントアース端子
  1025.             ->add('outlet_earth'ChoiceType::class, [
  1026.                 'choices'  => [
  1027.                     'あり' => 'あり',
  1028.                     'なし' => 'なし',
  1029.                     '不明' => '不明',
  1030.                 ],
  1031.                 'expanded' => true,
  1032.                 'multiple' => false,
  1033.                 'required' => false,
  1034.             ])
  1035.             // 配管穴の有無
  1036.             ->add('room_size_07'ChoiceType::class, [
  1037.                 'choices'  => [
  1038.                     'あり' => 'あり',
  1039.                     'なし' => 'なし',
  1040.                     '不明' => '不明',
  1041.                 ],
  1042.                 'expanded' => true,
  1043.                 'multiple' => false,
  1044.                 'required' => false,
  1045.             ])
  1046.             // 配管穴の有無 → なし
  1047.             ->add('room_size_07_02'ChoiceType::class, [
  1048.                 'choices'  => [
  1049.                     '建物が2009年6月以降に着工した証明書あり' => '建物が2009年6月以降に着工した証明書あり',
  1050.                     '建物が2009年6月以降に着工した証明書なし' => '建物が2009年6月以降に着工した証明書なし',
  1051.                 ],
  1052.                 'expanded' => true,
  1053.                 'multiple' => false,
  1054.                 'required' => false,
  1055.             ])
  1056.             // 配管穴の有無 → なし → 建物が2009年6月以降に着工した証明書あり
  1057.             ->add('room_size_07_03_v1'ChoiceType::class, [
  1058.                 'choices'  => [
  1059.                     '木造' => '木造',
  1060.                     'コンクリート' => 'コンクリート',
  1061.                     '鉄骨系(ALC)' => '鉄骨系(ALC)',
  1062.                     'その他' => 'その他',
  1063.                     '不明' => '不明',
  1064.                 ],
  1065.                 'expanded' => true,
  1066.                 'multiple' => false,
  1067.                 'required' => false,
  1068.                 'choice_attr' => function($choice$key$value) {
  1069.                     if ($choice === '木造') {
  1070.                         return ['price' => 7980];
  1071.                     } elseif ($choice === 'コンクリート') {
  1072.                         return ['price' => 39980];
  1073.                     } elseif ($choice === '鉄骨系(ALC)') {
  1074.                         return ['price' => 7980];
  1075.                     }
  1076.                     return [];
  1077.                 },
  1078.             ])
  1079.             // 配管穴の有無 → なし → 建物が2009年6月以降に着工した証明書なし
  1080.             ->add('room_size_07_03_v2'ChoiceType::class, [
  1081.                 'choices'  => [
  1082.                     '木造' => '木造',
  1083.                     'コンクリート' => 'コンクリート',
  1084.                     '鉄骨系(ALC)' => '鉄骨系(ALC)',
  1085.                     'その他' => 'その他',
  1086.                     '不明' => '不明',
  1087.                 ],
  1088.                 'expanded' => true,
  1089.                 'multiple' => false,
  1090.                 'required' => false,
  1091.                 'choice_attr' => function($choice$key$value) {
  1092.                     if ($choice === '木造') {
  1093.                         return ['price' => 34980];
  1094.                     } elseif ($choice === 'コンクリート') {
  1095.                         return ['price' => 74980];
  1096.                     } elseif ($choice === '鉄骨系(ALC)') {
  1097.                         return ['price' => 34980];
  1098.                     }
  1099.                     return [];
  1100.                 },
  1101.             ])
  1102.             //設置予定場所の配管の状態
  1103.             ->add('piping_status_07'ChoiceType::class, [
  1104.                 'choices'  => [
  1105.                     '通常配管' => '通常配管',
  1106.                     '隠蔽配管' => '隠蔽配管',
  1107.                     '不明' => '不明',
  1108.                 ],
  1109.                 'expanded' => true,
  1110.                 'multiple' => false,
  1111.                 'required' => false,
  1112.             ])
  1113.             // 設置予定場所の配管の状態 → 隠蔽配管
  1114.             ->add('piping_status_07_02'ChoiceType::class, [
  1115.                 'choices'  => [
  1116.                     '新設' => '新設',
  1117.                     '交換(再使用接続・洗浄費含む)' => '交換(再使用接続・洗浄費含む)',
  1118.                 ],
  1119.                 'expanded' => true,
  1120.                 'multiple' => false,
  1121.                 'required' => false,
  1122.                 'choice_attr' =>  function($choice$key$value) {
  1123.                     if ($choice === '新設') {
  1124.                         return ['price' => 9800];
  1125.                     } elseif ($choice === '交換(再使用接続・洗浄費含む)') {
  1126.                         return ['price' => 49800];
  1127.                     }
  1128.                     return [];
  1129.                 },
  1130.             ])
  1131.             //室内化粧カバー
  1132.             ->add('indoor_cover_07'ChoiceType::class, [
  1133.                 'choices'  => [
  1134.                     '必要(2m以内)' => '必要(2m以内)',
  1135.                     '不要' => '不要',
  1136.                     '未定' => '未定',
  1137.                 ],
  1138.                 'expanded' => true,
  1139.                 'multiple' => false,
  1140.                 'required' => false,
  1141.                 'choice_attr' =>  function($choice$key$value) {
  1142.                     if ($choice === '必要(2m以内)') {
  1143.                         return ['price' => 9980];
  1144.                     }
  1145.                     return [];
  1146.                 },
  1147.             ])
  1148.             // 室外化粧カバー
  1149.             ->add('outdoor_cover'ChoiceType::class, [
  1150.                 'choices'  => [
  1151.                     '必要' => '必要',
  1152.                     '不要' => '不要',
  1153.                     'その他' => 'その他',
  1154.                 ],
  1155.                 'expanded' => true,
  1156.                 'multiple' => false,
  1157.                 'required' => false,
  1158.             ])
  1159.             // 室外化粧カバー
  1160.             ->add('outdoor_cover_02'ChoiceType::class, [
  1161.                 'choices'  => [
  1162.                     '新規同階' => '新規同階',
  1163.                     '新規異階' => '新規異階',
  1164.                     '再使用(交換)同階' => '再使用(交換)同階',
  1165.                     '再使用(交換)異階' => '再使用(交換)異階',
  1166.                 ],
  1167.                 'expanded' => true,
  1168.                 'multiple' => false,
  1169.                 'required' => false,
  1170.                 'choice_attr' =>  function($choice$key$value) {
  1171.                     if ($choice === '新規同階') {
  1172.                         return ['price' => 9980];
  1173.                     } elseif ($choice === '新規異階') {
  1174.                         return ['price' => 44960];
  1175.                     } elseif ($choice === '再使用(交換)同階') {
  1176.                         return ['price' => 3380];
  1177.                     } elseif ($choice === '再使用(交換)異階') {
  1178.                         return ['price' => 19880];
  1179.                     }
  1180.                     return [];
  1181.                 },
  1182.             ])
  1183.             // 室外機の設置場所
  1184.             ->add('construction_outdoor_07'ChoiceType::class, [
  1185.                 'choices'  => [
  1186.                     '室内機と同階' => '室内機と同階',
  1187.                     '1階差(室内機2階、室外機1階)' => '1階差(室内機2階、室外機1階)',
  1188.                     '2階差(室内機3階、室外機1階)' => '2階差(室内機3階、室外機1階)',
  1189.                     'その他' => 'その他',
  1190.                 ],
  1191.                 'expanded' => true,
  1192.                 'multiple' => false,
  1193.                 'required' => false,
  1194.                 'choice_attr' =>  function($choice$key$value) {
  1195.                     if ($choice === '1階差(室内機2階、室外機1階)') {
  1196.                         return ['price' => 33880];
  1197.                     } elseif ($choice === '2階差(室内機3階、室外機1階)') {
  1198.                         return ['price' => 66880];
  1199.                     }
  1200.                     return [];
  1201.                 },
  1202.             ])
  1203.             //設置方法
  1204.             ->add('setting_install_method'ChoiceType::class, [
  1205.                 'choices'  => [
  1206.                     '新規取付' => '新規取付',
  1207.                     '交換' => '交換',
  1208.                 ],
  1209.                 'expanded' => true,
  1210.                 'multiple' => false,
  1211.                 'required' => false,
  1212.             ])
  1213.             // 設置方法 → 新規取付
  1214.             ->add('construction_method_07_v1'ChoiceType::class, [
  1215.                 'choices'  => [
  1216.                     '①床置き(基本料金に含まれます)' => '①床置き(基本料金に含まれます)',
  1217.                     '②二段置き' => '②二段置き',
  1218.                     '③壁掛け' => '③壁掛け',
  1219.                     '④屋根置き(屋根に対して垂直)' => '④屋根置き(屋根に対して垂直)',
  1220.                     '⑤屋根置き(屋根に対して水平)' => '⑤屋根置き(屋根に対して水平)',
  1221.                     '⑥公団吊り(天井吊り)' => '⑥公団吊り(天井吊り)',
  1222.                     '⑦サービスバルコニー' => '⑦サービスバルコニー',
  1223.                     '⑧不明(記載)' => '⑧不明(記載)',
  1224.                 ],
  1225.                 'expanded' => true,
  1226.                 'multiple' => false,
  1227.                 'required' => false,
  1228.                 'choice_attr' =>  function($choice$key$value) {
  1229.                     if ($choice === '②二段置き') {
  1230.                         return ['price' => 29800];
  1231.                     } elseif ($choice === '③壁掛け') {
  1232.                         return ['price' => 17800];
  1233.                     } elseif ($choice === '④屋根置き(屋根に対して垂直)') {
  1234.                         return ['price' => 21980];
  1235.                     } elseif ($choice === '⑤屋根置き(屋根に対して水平)') {
  1236.                         return ['price' => 21980];
  1237.                     } elseif ($choice === '⑥公団吊り(天井吊り)') {
  1238.                         return ['price' => 28800];
  1239.                     } elseif ($choice === '⑦サービスバルコニー') {
  1240.                         return ['price' => 7980];
  1241.                     }
  1242.                     return [];
  1243.                 },
  1244.             ])
  1245.             // 設置方法 → 交換
  1246.             ->add('construction_method_07_v2'ChoiceType::class, [
  1247.                 'choices'  => [
  1248.                     '①床置き(基本料金に含まれます)' => '①床置き(基本料金に含まれます)',
  1249.                     '②二段置き' => '②二段置き',
  1250.                     '③壁掛け' => '③壁掛け',
  1251.                     '④屋根置き(屋根に対して垂直)' => '④屋根置き(屋根に対して垂直)',
  1252.                     '⑤屋根置き(屋根に対して水平)' => '⑤屋根置き(屋根に対して水平)',
  1253.                     '⑥公団吊り(天井吊り)' => '⑥公団吊り(天井吊り)',
  1254.                     '⑦サービスバルコニー' => '⑦サービスバルコニー',
  1255.                     '⑧不明(記載)' => '⑧不明(記載)',
  1256.                 ],
  1257.                 'expanded' => true,
  1258.                 'multiple' => false,
  1259.                 'required' => false,
  1260.                 'choice_attr' =>  function($choice$key$value) {
  1261.                     if ($choice === '②二段置き') {
  1262.                         return ['price' => 7280];
  1263.                     } elseif ($choice === '③壁掛け') {
  1264.                         return ['price' => 21800];
  1265.                     } elseif ($choice === '④屋根置き(屋根に対して垂直)') {
  1266.                         return ['price' => 21980];
  1267.                     } elseif ($choice === '⑤屋根置き(屋根に対して水平)') {
  1268.                         return ['price' => 21980];
  1269.                     } elseif ($choice === '⑥公団吊り(天井吊り)') {
  1270.                         return ['price' => 21800];
  1271.                     } elseif ($choice === '⑦サービスバルコニー') {
  1272.                         return ['price' => 7980];
  1273.                     }
  1274.                     return [];
  1275.                 },
  1276.             ])
  1277.         ;
  1278.         // 自社ローン商品を取得
  1279.         $constructionItems = array();
  1280.         $constructionTatamis = array();
  1281.         $Category $this->categoryRepository->find(118);
  1282.         foreach ($Category->getProductCategories() as $productCategorie) {
  1283.             $product $productCategorie->getProduct();
  1284.             $productId $product->getId();
  1285.             $productName $product->getName();
  1286.             $constructionItems[$productId] = $productName;
  1287.             $constructionTatamis[$productId]['data-loan'] = 1;
  1288.             $constructionTatamis[$productId]['data-price'] = $product->getPrice02IncTaxMin();
  1289.             $constructionTatamis[$productId]['data-quantity'] = 1;
  1290.             foreach ($product->getProductCategories() as $ProductCategories) {
  1291.                 $categoryName $ProductCategories->getCategory()->getName();
  1292.                 if (mb_strpos($categoryName"畳") !== false) {
  1293.                     $constructionItems[$productId] = $productName {$categoryName}";
  1294.                     $constructionTatamis[$productId]['data-tatami'] = str_replace("畳"""$categoryName);
  1295.                 }
  1296.             }
  1297.         }       
  1298.         $builder->add('construction_airs'ChoiceType::class, [
  1299.             'choices'  => $constructionItems,
  1300.             'expanded' => true,
  1301.             'multiple' => true,
  1302.             'required' => false,
  1303.             'choice_attr' =>  function($choice$key$value) use ($constructionTatamis){   
  1304.                 return empty($constructionTatamis[$key]) ? [] : $constructionTatamis[$key];
  1305.             },
  1306.         ]);
  1307.     }
  1308.     /**
  1309.      * {@inheritdoc}
  1310.      */
  1311.     public function getBlockPrefix()
  1312.     {
  1313.         return 'loan';
  1314.     }
  1315. }