From 5e6e774374a701dba41d7f1209c73c67fd9e394b Mon Sep 17 00:00:00 2001 From: yunuo970428 <405378304@qq.com> Date: Tue, 24 Sep 2024 16:50:34 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E6=8A=A5=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- yxt-as-ui/src/api/statement/business.js | 22 ++ yxt-as-ui/src/api/statement/deadStock.js | 13 + yxt-as-ui/src/api/statement/doBusiness.js | 40 +++ yxt-as-ui/src/api/statement/inventory.js | 13 + .../statement/business/businessDetail.vue | 310 ++++++++++++++++++ .../statement/business/serviceSummary.vue | 224 +++++++++++++ .../views/statement/deadStock/deadStock.vue | 217 ++++++++++++ .../doBusiness/businessAnalysisByFirst.vue | 214 ++++++++++++ .../doBusiness/businessAnalysisBySecond.vue | 215 ++++++++++++ .../statement/doBusiness/businessSummary.vue | 223 +++++++++++++ .../statement/doBusiness/operatingDetail.vue | 297 +++++++++++++++++ .../views/statement/inventory/inventory.vue | 257 +++++++++++++++ 12 files changed, 2045 insertions(+) create mode 100644 yxt-as-ui/src/api/statement/business.js create mode 100644 yxt-as-ui/src/api/statement/deadStock.js create mode 100644 yxt-as-ui/src/api/statement/doBusiness.js create mode 100644 yxt-as-ui/src/api/statement/inventory.js create mode 100644 yxt-as-ui/src/views/statement/business/businessDetail.vue create mode 100644 yxt-as-ui/src/views/statement/business/serviceSummary.vue create mode 100644 yxt-as-ui/src/views/statement/deadStock/deadStock.vue create mode 100644 yxt-as-ui/src/views/statement/doBusiness/businessAnalysisByFirst.vue create mode 100644 yxt-as-ui/src/views/statement/doBusiness/businessAnalysisBySecond.vue create mode 100644 yxt-as-ui/src/views/statement/doBusiness/businessSummary.vue create mode 100644 yxt-as-ui/src/views/statement/doBusiness/operatingDetail.vue create mode 100644 yxt-as-ui/src/views/statement/inventory/inventory.vue diff --git a/yxt-as-ui/src/api/statement/business.js b/yxt-as-ui/src/api/statement/business.js new file mode 100644 index 0000000000..e6c6894ef9 --- /dev/null +++ b/yxt-as-ui/src/api/statement/business.js @@ -0,0 +1,22 @@ +import request from '@/utils/request' + +export default { + // 查询分页列表 -- 业务汇总表 + summary: function(params) { + return request({ + url: '/as/v1/AsBusrepairBill/Summary', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 查询分页列表 -- 业务明细表 + busDetailsList: function(params) { + return request({ + url: '/as/v1/AsBusrepairBill/busDetailsList', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + } +} diff --git a/yxt-as-ui/src/api/statement/deadStock.js b/yxt-as-ui/src/api/statement/deadStock.js new file mode 100644 index 0000000000..b115df8a5e --- /dev/null +++ b/yxt-as-ui/src/api/statement/deadStock.js @@ -0,0 +1,13 @@ +import request from '@/utils/request' + +export default { + // 查询分页列表 -- 滞销品查询 + deadStockList: function(params) { + return request({ + url: '/wms/apiadmin/inventory/wmsinventory/deadStockList', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + } +} diff --git a/yxt-as-ui/src/api/statement/doBusiness.js b/yxt-as-ui/src/api/statement/doBusiness.js new file mode 100644 index 0000000000..fbf204ce6f --- /dev/null +++ b/yxt-as-ui/src/api/statement/doBusiness.js @@ -0,0 +1,40 @@ +import request from '@/utils/request' + +export default { + // 查询分页列表 -- 营业汇总表 + businessSummary: function(params) { + return request({ + url: '/as/v1/AsBusrepairBill/businessSummary', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 查询分页列表 -- 营业明细表 + businessDetails: function(params) { + return request({ + url: '/as/v1/AsBusrepairBill/businessDetails', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 查询分页列表 -- 营业保外分析表 + outInsuranceBusiness: function(params) { + return request({ + url: '/as/v1/AsBusrepairBill/outInsuranceBusiness', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 查询分页列表 -- 营业欠款分析表 + debtBusiness: function(params) { + return request({ + url: '/as/v1/AsBusrepairBill/debtBusiness', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + } +} diff --git a/yxt-as-ui/src/api/statement/inventory.js b/yxt-as-ui/src/api/statement/inventory.js new file mode 100644 index 0000000000..5945ddd7fd --- /dev/null +++ b/yxt-as-ui/src/api/statement/inventory.js @@ -0,0 +1,13 @@ +import request from '@/utils/request' + +export default { + // 查询分页列表 -- 库存查询表 + inventoryStockList: function(params) { + return request({ + url: '/wms/apiadmin/inventory/wmsinventory/inventoryStockList', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + } +} diff --git a/yxt-as-ui/src/views/statement/business/businessDetail.vue b/yxt-as-ui/src/views/statement/business/businessDetail.vue new file mode 100644 index 0000000000..07fa971617 --- /dev/null +++ b/yxt-as-ui/src/views/statement/business/businessDetail.vue @@ -0,0 +1,310 @@ + + + + + + + + + {{ searchxianshitit }} + + + + + 至 + + + + + 至 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 查询 + 重置 + + + + + + 业务明细表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yxt-as-ui/src/views/statement/business/serviceSummary.vue b/yxt-as-ui/src/views/statement/business/serviceSummary.vue new file mode 100644 index 0000000000..7d7ba31c55 --- /dev/null +++ b/yxt-as-ui/src/views/statement/business/serviceSummary.vue @@ -0,0 +1,224 @@ + + + + + + + + + {{ searchxianshitit }} + + + + + 至 + + + + + 至 + + + + + 查询 + 本日 + 本月 + 本年 + 重置 + + + + + + 业务汇总表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yxt-as-ui/src/views/statement/deadStock/deadStock.vue b/yxt-as-ui/src/views/statement/deadStock/deadStock.vue new file mode 100644 index 0000000000..9a978336de --- /dev/null +++ b/yxt-as-ui/src/views/statement/deadStock/deadStock.vue @@ -0,0 +1,217 @@ + + + + + + + + + {{ searchxianshitit }} + + + + + + + + + + + + + + + + + + + + + + + 查询 + 重置 + + + + + + 滞销品报表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yxt-as-ui/src/views/statement/doBusiness/businessAnalysisByFirst.vue b/yxt-as-ui/src/views/statement/doBusiness/businessAnalysisByFirst.vue new file mode 100644 index 0000000000..82996e7514 --- /dev/null +++ b/yxt-as-ui/src/views/statement/doBusiness/businessAnalysisByFirst.vue @@ -0,0 +1,214 @@ + + + + + + + + + {{ searchxianshitit }} + + + + + 至 + + + + + 查询 + 本日 + 本月 + 本年 + 重置 + + + + + + 营业保外分析表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yxt-as-ui/src/views/statement/doBusiness/businessAnalysisBySecond.vue b/yxt-as-ui/src/views/statement/doBusiness/businessAnalysisBySecond.vue new file mode 100644 index 0000000000..d1ae46a6c0 --- /dev/null +++ b/yxt-as-ui/src/views/statement/doBusiness/businessAnalysisBySecond.vue @@ -0,0 +1,215 @@ + + + + + + + + + {{ searchxianshitit }} + + + + + 至 + + + + + 查询 + 本日 + 本月 + 本年 + 重置 + + + + + + 营业欠款分析表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yxt-as-ui/src/views/statement/doBusiness/businessSummary.vue b/yxt-as-ui/src/views/statement/doBusiness/businessSummary.vue new file mode 100644 index 0000000000..f5244b4d68 --- /dev/null +++ b/yxt-as-ui/src/views/statement/doBusiness/businessSummary.vue @@ -0,0 +1,223 @@ + + + + + + + + + {{ searchxianshitit }} + + + + + 至 + + + + + 查询 + 本日 + 本月 + 本年 + 重置 + + + + + + 营业汇总表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yxt-as-ui/src/views/statement/doBusiness/operatingDetail.vue b/yxt-as-ui/src/views/statement/doBusiness/operatingDetail.vue new file mode 100644 index 0000000000..64a9ca05c4 --- /dev/null +++ b/yxt-as-ui/src/views/statement/doBusiness/operatingDetail.vue @@ -0,0 +1,297 @@ + + + + + + + + + {{ searchxianshitit }} + + + + + 至 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 至 + + + + + + + + + + + + + + 查询 + 本日 + 本月 + 本年 + 重置 + + + + + + 营业明细表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yxt-as-ui/src/views/statement/inventory/inventory.vue b/yxt-as-ui/src/views/statement/inventory/inventory.vue new file mode 100644 index 0000000000..e8a59d9f77 --- /dev/null +++ b/yxt-as-ui/src/views/statement/inventory/inventory.vue @@ -0,0 +1,257 @@ + + + + + + + + + {{ searchxianshitit }} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 查询 + 重置 + + + + + + 库存表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +