How to save form data into 2 data tables?









up vote
0
down vote

favorite












I am looking to save data from a form into 2 different tables.



I have this in stripe account controller create:



 def create

@stripe_account = StripeAccount.new(stripe_account_params)
@user = User.find(params[:user_id])
@stripe_account.user_id = current_user.id



acct = Stripe::Account.create(
:country => "US",
:type => "custom",
legal_entity:
first_name: stripe_account_params[:first_name].capitalize,
last_name: stripe_account_params[:last_name].capitalize,
type: stripe_account_params[:account_type],
dob:
day: stripe_account_params[:dob_day],
month: stripe_account_params[:dob_month],
year: stripe_account_params[:dob_year]
,
address:
line1: stripe_account_params[:address_line1],
city: stripe_account_params[:address_city],
state: stripe_account_params[:address_state],
postal_code: stripe_account_params[:address_postal]
,
ssn_last_4: stripe_account_params[:ssn_last_4]
,
tos_acceptance:
date: Time.now.to_i,
ip: request.remote_ip


)

@stripe_account.acct_id = acct.id
#issue is here at @user
@user.stripe_token = acct.id

if @stripe_account.save!
format.html redirect_to new_bank_account_path, notice: 'Stripe account was successfully created.'
format.json render :show, status: :created, location: @stripe_account
else
format.html render :new
format.json render json: @stripe_account.errors, status: :unprocessable_entity
end
end
end


The form:



 <%= form_for ([@user, @stripe_account]) do | f | %>


User Model:



 has_one :stripe_account


Stripe_account Model:



 belongs_to :users


the acct.id gets saved into the stripe_account table but not the user table. The user table has a user.stripe_account record.



How can i save the acct.id in both tables?










share|improve this question



























    up vote
    0
    down vote

    favorite












    I am looking to save data from a form into 2 different tables.



    I have this in stripe account controller create:



     def create

    @stripe_account = StripeAccount.new(stripe_account_params)
    @user = User.find(params[:user_id])
    @stripe_account.user_id = current_user.id



    acct = Stripe::Account.create(
    :country => "US",
    :type => "custom",
    legal_entity:
    first_name: stripe_account_params[:first_name].capitalize,
    last_name: stripe_account_params[:last_name].capitalize,
    type: stripe_account_params[:account_type],
    dob:
    day: stripe_account_params[:dob_day],
    month: stripe_account_params[:dob_month],
    year: stripe_account_params[:dob_year]
    ,
    address:
    line1: stripe_account_params[:address_line1],
    city: stripe_account_params[:address_city],
    state: stripe_account_params[:address_state],
    postal_code: stripe_account_params[:address_postal]
    ,
    ssn_last_4: stripe_account_params[:ssn_last_4]
    ,
    tos_acceptance:
    date: Time.now.to_i,
    ip: request.remote_ip


    )

    @stripe_account.acct_id = acct.id
    #issue is here at @user
    @user.stripe_token = acct.id

    if @stripe_account.save!
    format.html redirect_to new_bank_account_path, notice: 'Stripe account was successfully created.'
    format.json render :show, status: :created, location: @stripe_account
    else
    format.html render :new
    format.json render json: @stripe_account.errors, status: :unprocessable_entity
    end
    end
    end


    The form:



     <%= form_for ([@user, @stripe_account]) do | f | %>


    User Model:



     has_one :stripe_account


    Stripe_account Model:



     belongs_to :users


    the acct.id gets saved into the stripe_account table but not the user table. The user table has a user.stripe_account record.



    How can i save the acct.id in both tables?










    share|improve this question

























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I am looking to save data from a form into 2 different tables.



      I have this in stripe account controller create:



       def create

      @stripe_account = StripeAccount.new(stripe_account_params)
      @user = User.find(params[:user_id])
      @stripe_account.user_id = current_user.id



      acct = Stripe::Account.create(
      :country => "US",
      :type => "custom",
      legal_entity:
      first_name: stripe_account_params[:first_name].capitalize,
      last_name: stripe_account_params[:last_name].capitalize,
      type: stripe_account_params[:account_type],
      dob:
      day: stripe_account_params[:dob_day],
      month: stripe_account_params[:dob_month],
      year: stripe_account_params[:dob_year]
      ,
      address:
      line1: stripe_account_params[:address_line1],
      city: stripe_account_params[:address_city],
      state: stripe_account_params[:address_state],
      postal_code: stripe_account_params[:address_postal]
      ,
      ssn_last_4: stripe_account_params[:ssn_last_4]
      ,
      tos_acceptance:
      date: Time.now.to_i,
      ip: request.remote_ip


      )

      @stripe_account.acct_id = acct.id
      #issue is here at @user
      @user.stripe_token = acct.id

      if @stripe_account.save!
      format.html redirect_to new_bank_account_path, notice: 'Stripe account was successfully created.'
      format.json render :show, status: :created, location: @stripe_account
      else
      format.html render :new
      format.json render json: @stripe_account.errors, status: :unprocessable_entity
      end
      end
      end


      The form:



       <%= form_for ([@user, @stripe_account]) do | f | %>


      User Model:



       has_one :stripe_account


      Stripe_account Model:



       belongs_to :users


      the acct.id gets saved into the stripe_account table but not the user table. The user table has a user.stripe_account record.



      How can i save the acct.id in both tables?










      share|improve this question















      I am looking to save data from a form into 2 different tables.



      I have this in stripe account controller create:



       def create

      @stripe_account = StripeAccount.new(stripe_account_params)
      @user = User.find(params[:user_id])
      @stripe_account.user_id = current_user.id



      acct = Stripe::Account.create(
      :country => "US",
      :type => "custom",
      legal_entity:
      first_name: stripe_account_params[:first_name].capitalize,
      last_name: stripe_account_params[:last_name].capitalize,
      type: stripe_account_params[:account_type],
      dob:
      day: stripe_account_params[:dob_day],
      month: stripe_account_params[:dob_month],
      year: stripe_account_params[:dob_year]
      ,
      address:
      line1: stripe_account_params[:address_line1],
      city: stripe_account_params[:address_city],
      state: stripe_account_params[:address_state],
      postal_code: stripe_account_params[:address_postal]
      ,
      ssn_last_4: stripe_account_params[:ssn_last_4]
      ,
      tos_acceptance:
      date: Time.now.to_i,
      ip: request.remote_ip


      )

      @stripe_account.acct_id = acct.id
      #issue is here at @user
      @user.stripe_token = acct.id

      if @stripe_account.save!
      format.html redirect_to new_bank_account_path, notice: 'Stripe account was successfully created.'
      format.json render :show, status: :created, location: @stripe_account
      else
      format.html render :new
      format.json render json: @stripe_account.errors, status: :unprocessable_entity
      end
      end
      end


      The form:



       <%= form_for ([@user, @stripe_account]) do | f | %>


      User Model:



       has_one :stripe_account


      Stripe_account Model:



       belongs_to :users


      the acct.id gets saved into the stripe_account table but not the user table. The user table has a user.stripe_account record.



      How can i save the acct.id in both tables?







      ruby-on-rails ruby






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 11 at 1:48

























      asked Nov 10 at 23:31









      uno

      508




      508






















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          1
          down vote



          accepted










          I'm guessing you are only doing @stripe_account.save and not doing @user.save (why did you cut your method?).



          You can add a @user.save or set the belongs_to assocaition with the autosave: true option.



          I'd recommend you to change this:



          @stripe_account = StripeAccount.new(stripe_account_params)
          @user = User.find(params[:user_id])
          @stripe_account.user_id = current_user.id


          to this, though:



          @user = User.find(params[:user_id])
          @stripe_account = @user.build_stripe_account(stripe_account_params)


          I don't think the autosave will works if you only set the id and not the actual object.






          share|improve this answer




















          • Well stripe_account and user are separate tables. The user table will be first. So once the user creates the stripe_account, i want the stripe_account (the account token which is acct.id) to be also in the User table under stripe_account..... im also not sure by cut my method, what do you mean?
            – uno
            Nov 11 at 1:40










          • and yes, i only do "if @stripe_account.save!" .. but if i do it that way, doesn't nothing get saved into the StripeAccount table? I only want the acct.id in the User table from the stripe_account form/create
            – uno
            Nov 11 at 1:41











          • With "why did you cut your method?" I meant that, why are you not showing the complete method? I had to guess you only save the stripe_account object.
            – arieljuod
            Nov 11 at 1:43










          • I don't understand your last question, if you set the relationship as autosave, when you save the @stripe_account object it will also save the @user associated object. If you set @user.stripe_token before saving the stripe_account, it will also update the users table.
            – arieljuod
            Nov 11 at 1:44











          • ok so to clarify, it will save in both places? Because im worried without "@stripe_account = StripeAccount.new(stripe_account_params)"... will it save in both?
            – uno
            Nov 11 at 1:46










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53244457%2fhow-to-save-form-data-into-2-data-tables%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          1
          down vote



          accepted










          I'm guessing you are only doing @stripe_account.save and not doing @user.save (why did you cut your method?).



          You can add a @user.save or set the belongs_to assocaition with the autosave: true option.



          I'd recommend you to change this:



          @stripe_account = StripeAccount.new(stripe_account_params)
          @user = User.find(params[:user_id])
          @stripe_account.user_id = current_user.id


          to this, though:



          @user = User.find(params[:user_id])
          @stripe_account = @user.build_stripe_account(stripe_account_params)


          I don't think the autosave will works if you only set the id and not the actual object.






          share|improve this answer




















          • Well stripe_account and user are separate tables. The user table will be first. So once the user creates the stripe_account, i want the stripe_account (the account token which is acct.id) to be also in the User table under stripe_account..... im also not sure by cut my method, what do you mean?
            – uno
            Nov 11 at 1:40










          • and yes, i only do "if @stripe_account.save!" .. but if i do it that way, doesn't nothing get saved into the StripeAccount table? I only want the acct.id in the User table from the stripe_account form/create
            – uno
            Nov 11 at 1:41











          • With "why did you cut your method?" I meant that, why are you not showing the complete method? I had to guess you only save the stripe_account object.
            – arieljuod
            Nov 11 at 1:43










          • I don't understand your last question, if you set the relationship as autosave, when you save the @stripe_account object it will also save the @user associated object. If you set @user.stripe_token before saving the stripe_account, it will also update the users table.
            – arieljuod
            Nov 11 at 1:44











          • ok so to clarify, it will save in both places? Because im worried without "@stripe_account = StripeAccount.new(stripe_account_params)"... will it save in both?
            – uno
            Nov 11 at 1:46














          up vote
          1
          down vote



          accepted










          I'm guessing you are only doing @stripe_account.save and not doing @user.save (why did you cut your method?).



          You can add a @user.save or set the belongs_to assocaition with the autosave: true option.



          I'd recommend you to change this:



          @stripe_account = StripeAccount.new(stripe_account_params)
          @user = User.find(params[:user_id])
          @stripe_account.user_id = current_user.id


          to this, though:



          @user = User.find(params[:user_id])
          @stripe_account = @user.build_stripe_account(stripe_account_params)


          I don't think the autosave will works if you only set the id and not the actual object.






          share|improve this answer




















          • Well stripe_account and user are separate tables. The user table will be first. So once the user creates the stripe_account, i want the stripe_account (the account token which is acct.id) to be also in the User table under stripe_account..... im also not sure by cut my method, what do you mean?
            – uno
            Nov 11 at 1:40










          • and yes, i only do "if @stripe_account.save!" .. but if i do it that way, doesn't nothing get saved into the StripeAccount table? I only want the acct.id in the User table from the stripe_account form/create
            – uno
            Nov 11 at 1:41











          • With "why did you cut your method?" I meant that, why are you not showing the complete method? I had to guess you only save the stripe_account object.
            – arieljuod
            Nov 11 at 1:43










          • I don't understand your last question, if you set the relationship as autosave, when you save the @stripe_account object it will also save the @user associated object. If you set @user.stripe_token before saving the stripe_account, it will also update the users table.
            – arieljuod
            Nov 11 at 1:44











          • ok so to clarify, it will save in both places? Because im worried without "@stripe_account = StripeAccount.new(stripe_account_params)"... will it save in both?
            – uno
            Nov 11 at 1:46












          up vote
          1
          down vote



          accepted







          up vote
          1
          down vote



          accepted






          I'm guessing you are only doing @stripe_account.save and not doing @user.save (why did you cut your method?).



          You can add a @user.save or set the belongs_to assocaition with the autosave: true option.



          I'd recommend you to change this:



          @stripe_account = StripeAccount.new(stripe_account_params)
          @user = User.find(params[:user_id])
          @stripe_account.user_id = current_user.id


          to this, though:



          @user = User.find(params[:user_id])
          @stripe_account = @user.build_stripe_account(stripe_account_params)


          I don't think the autosave will works if you only set the id and not the actual object.






          share|improve this answer












          I'm guessing you are only doing @stripe_account.save and not doing @user.save (why did you cut your method?).



          You can add a @user.save or set the belongs_to assocaition with the autosave: true option.



          I'd recommend you to change this:



          @stripe_account = StripeAccount.new(stripe_account_params)
          @user = User.find(params[:user_id])
          @stripe_account.user_id = current_user.id


          to this, though:



          @user = User.find(params[:user_id])
          @stripe_account = @user.build_stripe_account(stripe_account_params)


          I don't think the autosave will works if you only set the id and not the actual object.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 11 at 1:24









          arieljuod

          5,89211121




          5,89211121











          • Well stripe_account and user are separate tables. The user table will be first. So once the user creates the stripe_account, i want the stripe_account (the account token which is acct.id) to be also in the User table under stripe_account..... im also not sure by cut my method, what do you mean?
            – uno
            Nov 11 at 1:40










          • and yes, i only do "if @stripe_account.save!" .. but if i do it that way, doesn't nothing get saved into the StripeAccount table? I only want the acct.id in the User table from the stripe_account form/create
            – uno
            Nov 11 at 1:41











          • With "why did you cut your method?" I meant that, why are you not showing the complete method? I had to guess you only save the stripe_account object.
            – arieljuod
            Nov 11 at 1:43










          • I don't understand your last question, if you set the relationship as autosave, when you save the @stripe_account object it will also save the @user associated object. If you set @user.stripe_token before saving the stripe_account, it will also update the users table.
            – arieljuod
            Nov 11 at 1:44











          • ok so to clarify, it will save in both places? Because im worried without "@stripe_account = StripeAccount.new(stripe_account_params)"... will it save in both?
            – uno
            Nov 11 at 1:46
















          • Well stripe_account and user are separate tables. The user table will be first. So once the user creates the stripe_account, i want the stripe_account (the account token which is acct.id) to be also in the User table under stripe_account..... im also not sure by cut my method, what do you mean?
            – uno
            Nov 11 at 1:40










          • and yes, i only do "if @stripe_account.save!" .. but if i do it that way, doesn't nothing get saved into the StripeAccount table? I only want the acct.id in the User table from the stripe_account form/create
            – uno
            Nov 11 at 1:41











          • With "why did you cut your method?" I meant that, why are you not showing the complete method? I had to guess you only save the stripe_account object.
            – arieljuod
            Nov 11 at 1:43










          • I don't understand your last question, if you set the relationship as autosave, when you save the @stripe_account object it will also save the @user associated object. If you set @user.stripe_token before saving the stripe_account, it will also update the users table.
            – arieljuod
            Nov 11 at 1:44











          • ok so to clarify, it will save in both places? Because im worried without "@stripe_account = StripeAccount.new(stripe_account_params)"... will it save in both?
            – uno
            Nov 11 at 1:46















          Well stripe_account and user are separate tables. The user table will be first. So once the user creates the stripe_account, i want the stripe_account (the account token which is acct.id) to be also in the User table under stripe_account..... im also not sure by cut my method, what do you mean?
          – uno
          Nov 11 at 1:40




          Well stripe_account and user are separate tables. The user table will be first. So once the user creates the stripe_account, i want the stripe_account (the account token which is acct.id) to be also in the User table under stripe_account..... im also not sure by cut my method, what do you mean?
          – uno
          Nov 11 at 1:40












          and yes, i only do "if @stripe_account.save!" .. but if i do it that way, doesn't nothing get saved into the StripeAccount table? I only want the acct.id in the User table from the stripe_account form/create
          – uno
          Nov 11 at 1:41





          and yes, i only do "if @stripe_account.save!" .. but if i do it that way, doesn't nothing get saved into the StripeAccount table? I only want the acct.id in the User table from the stripe_account form/create
          – uno
          Nov 11 at 1:41













          With "why did you cut your method?" I meant that, why are you not showing the complete method? I had to guess you only save the stripe_account object.
          – arieljuod
          Nov 11 at 1:43




          With "why did you cut your method?" I meant that, why are you not showing the complete method? I had to guess you only save the stripe_account object.
          – arieljuod
          Nov 11 at 1:43












          I don't understand your last question, if you set the relationship as autosave, when you save the @stripe_account object it will also save the @user associated object. If you set @user.stripe_token before saving the stripe_account, it will also update the users table.
          – arieljuod
          Nov 11 at 1:44





          I don't understand your last question, if you set the relationship as autosave, when you save the @stripe_account object it will also save the @user associated object. If you set @user.stripe_token before saving the stripe_account, it will also update the users table.
          – arieljuod
          Nov 11 at 1:44













          ok so to clarify, it will save in both places? Because im worried without "@stripe_account = StripeAccount.new(stripe_account_params)"... will it save in both?
          – uno
          Nov 11 at 1:46




          ok so to clarify, it will save in both places? Because im worried without "@stripe_account = StripeAccount.new(stripe_account_params)"... will it save in both?
          – uno
          Nov 11 at 1:46

















           

          draft saved


          draft discarded















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53244457%2fhow-to-save-form-data-into-2-data-tables%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          這個網誌中的熱門文章

          Barbados

          How to read a connectionString WITH PROVIDER in .NET Core?

          Node.js Script on GitHub Pages or Amazon S3