diff --git a/oms_web/oms_vue/src/api/project/order.js b/oms_web/oms_vue/src/api/project/order.js
index 9d1b831c..d139385c 100644
--- a/oms_web/oms_vue/src/api/project/order.js
+++ b/oms_web/oms_vue/src/api/project/order.js
@@ -70,3 +70,16 @@ export function uploadContractFile(data) {
headers: { 'Content-Type': 'multipart/form-data' }
})
}
+
+// 更新订单财务状态
+export function updateFinanceStatus(id, status) {
+ const data = {
+ id,
+ financeStatus: status
+ }
+ return request({
+ url: '/project/order/finance/update',
+ method: 'post',
+ data: data
+ })
+}
diff --git a/oms_web/oms_vue/src/views/project/order/orderFinance.vue b/oms_web/oms_vue/src/views/project/order/orderFinance.vue
new file mode 100644
index 00000000..f878ef94
--- /dev/null
+++ b/oms_web/oms_vue/src/views/project/order/orderFinance.vue
@@ -0,0 +1,345 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+ {{ scope.row.projectName }}
+
+
+
+
+ {{ scope.row.orderCode }}
+
+
+
+
+
+ {{ (scope.row.orderStatus == 1 || scope.row.orderStatus == 2) ? scope.row.actualPurchaseAmount : scope.row.shipmentAmount | formatAmount }}
+
+
+
+
+
+
+
+
+
+ {{ scope.row.financeStatus == '1' ? '完结' : '未完结' }}
+
+
+
+
+
+
+
+
+
+
+
+
+ 完结
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+