請求先住所に事前入力された値を入力しようとしています。私は次のように改ざんを書きました:
Deface::Override.new(:virtual_path => 'spree/address/_form',
:name => 'prepopulate_billing_address',
:set_attributes => 'p#order_bill_address_attributes_phone',
:attributes => {:value => "122344"}
)
そしてコンテンツはに属しますapp/overrides/autofill_billing_address.rb
このビューを置き換えようとしています Spree フォーム ビュー
上記の改ざんがありますが、改ざんログには次のように書かれています
Deface: 'prepopulate_billing_address' matched 0 times with 'p#order_bill_address_attributes_phone'
実行中の spree インスタンスの ID は でorder_bill_address_attributes_phone
あり、 でラップされてい<p>
ます。何か案が?助けてくれてありがとう!