Created
April 8, 2021 03:18
-
-
Save ProfFan/bb119fc8f74393fd74d72d617e974888 to your computer and use it in GitHub Desktop.
Springtax 1099 form helper
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This script helps you automatically fill each page of 1099 form when you have a consolidated 1099 | |
// Just paste in the console each time you fill a new page | |
$("#__employer_details_employer_name").val("ABC INC") | |
$("#__employer_details_employer_address").val("ADDR AVE NE") | |
$("#__employer_details_employer_city").val("Palo Alto") | |
$("#__employer_details_employer_state").val("CA") | |
$("#__employer_details_employer_zip_code").val("943011") | |
$("#payers_federal_id").val("38-xxxxxxx") | |
$("#statecode").val("CA") | |
$("#state_income_tax").val("0") | |
$("#federal_income_tax").val("0") | |
$("#__employer_details_state_ein").val("0") | |
$("#sim_gain_or_lost1 > a").click() | |
$("#sim_reported_irs1 > a").click() | |
// Will pop input boxes so you can fast input the transaction entry | |
$("#description").val(prompt("name", "")) | |
$("#date_of_acquistion").val(prompt("date acq", "03/17/2020")) | |
$("#date_of_sale").val(prompt("date sale", "03/18/2020")) | |
$("#stocks_bonds").val(prompt("proceeds", "0.00")) | |
$("#costs_other_basic").val(prompt("costs_other_basic", "0.00")) | |
$(".field-block > input").attr("autocomplete", null) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment