61 lines
2.9 KiB
SQL
61 lines
2.9 KiB
SQL
INSERT INTO hrsa_tax_report_column (id, create_time, update_time, creator, delete_type, tenant_key,
|
|
tax_report_type, income_category, report_column_name,
|
|
report_column_data_index)
|
|
VALUES (805915446042157061, null, null, null, 0, 'all_teams', '1', '2', '当期收入额', 'annualIncome');
|
|
/
|
|
|
|
INSERT INTO hrsa_tax_report_column (id, create_time, update_time, creator, delete_type, tenant_key,
|
|
tax_report_type, income_category, report_column_name,
|
|
report_column_data_index)
|
|
VALUES (805915446042157062, null, null, null, 0, 'all_teams', '1', '2', '免税收入', 'annualTaxFreeIncome');
|
|
/
|
|
|
|
INSERT INTO hrsa_tax_report_column (id, create_time, update_time, creator, delete_type, tenant_key,
|
|
tax_report_type, income_category, report_column_name,
|
|
report_column_data_index)
|
|
VALUES (805915446042157063, null, null, null, 0, 'all_teams', '1', '2', '其他', 'annualOther');
|
|
/
|
|
|
|
INSERT INTO hrsa_tax_report_column (id, create_time, update_time, creator, delete_type, tenant_key,
|
|
tax_report_type, income_category, report_column_name,
|
|
report_column_data_index)
|
|
VALUES (805915446042157064, null, null, null, 0, 'all_teams', '1', '2', '准予扣除的捐赠额', 'annualDonateTax');
|
|
/
|
|
|
|
INSERT INTO hrsa_tax_report_column (id, create_time, update_time, creator, delete_type, tenant_key,
|
|
tax_report_type, income_category, report_column_name,
|
|
report_column_data_index)
|
|
VALUES (805915446042157065, null, null, null, 0, 'all_teams', '1', '2', '减免税额', 'annualTaxSavings');
|
|
/
|
|
|
|
INSERT INTO hrsa_tax_report_column (id, create_time, update_time, creator, delete_type, tenant_key,
|
|
tax_report_type, income_category, report_column_name,
|
|
report_column_data_index)
|
|
VALUES (805915446042157066, null, null, null, 0, 'all_teams', '1', '2', '备注', 'annualRemark');
|
|
/
|
|
|
|
update hrsa_sob_tax_report_rule set report_column_data_index = 'annualIncome'
|
|
where report_column_data_index = 'annual_income';
|
|
/
|
|
|
|
update hrsa_sob_tax_report_rule set report_column_data_index = 'annualTaxFreeIncome'
|
|
where report_column_data_index = 'annual_tax_free_income';
|
|
/
|
|
|
|
update hrsa_sob_tax_report_rule set report_column_data_index = 'annualOther'
|
|
where report_column_data_index = 'annual_other';
|
|
/
|
|
|
|
update hrsa_sob_tax_report_rule set report_column_data_index = 'annualDonateTax'
|
|
where report_column_data_index = 'annual_donate_tax';
|
|
/
|
|
|
|
update hrsa_sob_tax_report_rule set report_column_data_index = 'annualTaxSavings'
|
|
where report_column_data_index = 'annual_tax_savings';
|
|
/
|
|
|
|
update hrsa_sob_tax_report_rule set report_column_data_index = 'annualRemark'
|
|
where report_column_data_index = 'annual_remark';
|
|
/
|
|
|