This commit is contained in:
wangshiming
2022-04-19 14:24:00 +08:00
parent 29cbfb522a
commit e3aab0fc5b
4 changed files with 22 additions and 13 deletions

View File

@ -4,7 +4,7 @@
* @Author : Shiming * @Author : Shiming
* @Date : 2022-01-18 09:51:21 * @Date : 2022-01-18 09:51:21
* @LastEditors : Shiming * @LastEditors : Shiming
* @LastEditTime : 2022-04-19 13:17:35 * @LastEditTime : 2022-04-19 14:20:28
* @FilePath : \\tms-obc-web\\proxy.conf.js * @FilePath : \\tms-obc-web\\proxy.conf.js
* Copyright (C) 2022 huzhenhong. All rights reserved. * Copyright (C) 2022 huzhenhong. All rights reserved.
*/ */
@ -30,7 +30,7 @@ module.exports = {
// }, // },
'//api': { '//api': {
target: { target: {
host: 'tms-api-dev.eascs.com', host: 'tms-api-test.eascs.com',
protocol: 'https:', protocol: 'https:',
port: 443 port: 443
}, },

View File

@ -285,16 +285,12 @@ export class TaxManagementIndividualCollectComponent implements OnInit {
* @param params 更新数据 * @param params 更新数据
*/ */
uploadSetting() { uploadSetting() {
if (this.selectedRows.length === 0) { this.service.request(this.service.$api_get_updateData).subscribe((res: any) => {
this.service.msgSrv.warning('请选择需要更新的数据'); if (res) {
return; this.service.msgSrv.success('更新成功');
} this.search();
// this.service.request(this.service.$api_recall_reporting, { rows: this.selectedRows }).subscribe((res: any) => { }
// if (res) { })
// this.service.msgSrv.success('更新成功');
// this.search();
// }
// })
} }
search() { search() {

View File

@ -413,10 +413,21 @@ export class TaxManagementOrderReportingComponent implements OnInit {
* 上传 * 上传
*/ */
upload() { upload() {
let status = false
if (this.selectedRows.length === 0) { if (this.selectedRows.length === 0) {
this.openWainingModal('请选择需要上传的数据'); this.openWainingModal('请选择需要上传的数据');
return; return;
} }
this.selectedRows.forEach(item => {
if (item?.putStatus != '0') {
status = true
}
});
if(status) {
this.service.msgSrv.warning('选择了已上传,请重新勾选!');
return;
}
let params: any[] = []; let params: any[] = [];
this.selectedRows.forEach(item => { this.selectedRows.forEach(item => {
params.push(item.id); params.push(item.id);

View File

@ -4,7 +4,7 @@
* @Author : Shiming * @Author : Shiming
* @Date : 2021-12-27 10:30:56 * @Date : 2021-12-27 10:30:56
* @LastEditors : Shiming * @LastEditors : Shiming
* @LastEditTime : 2022-04-09 14:22:35 * @LastEditTime : 2022-04-19 14:19:44
* @FilePath : \\tms-obc-web\\src\\app\\routes\\tax-management\\services\\tax-management.service.ts * @FilePath : \\tms-obc-web\\src\\app\\routes\\tax-management\\services\\tax-management.service.ts
* Copyright (C) 2022 huzhenhong. All rights reserved. * Copyright (C) 2022 huzhenhong. All rights reserved.
*/ */
@ -50,6 +50,8 @@ export class TaxManagementService extends ShipperBaseService {
$api_get_taxDeclaration = `/api/sdc/taxDeclaration/list/page`; $api_get_taxDeclaration = `/api/sdc/taxDeclaration/list/page`;
// 更新所有税务申报 // 更新所有税务申报
$api_get_taxDeclaration_updateAll = `/api/sdc/taxDeclaration/updateAll`; $api_get_taxDeclaration_updateAll = `/api/sdc/taxDeclaration/updateAll`;
// 更新所有个税汇总
$api_get_updateData = `/api/sdc/taxSummary/updateData`;
$api_recall_reporting = ``; // 撤回 $api_recall_reporting = ``; // 撤回
$api_async_export_order_reporting_list = ``; // 导出订单上报 $api_async_export_order_reporting_list = ``; // 导出订单上报
$api_get_upload_setting = ``; // 修改上传设置 $api_get_upload_setting = ``; // 修改上传设置