diff --git a/oms_web/oms_vue/src/views/finance/charge/index.vue b/oms_web/oms_vue/src/views/finance/charge/index.vue
index bafc18a4..804d0545 100644
--- a/oms_web/oms_vue/src/views/finance/charge/index.vue
+++ b/oms_web/oms_vue/src/views/finance/charge/index.vue
@@ -53,51 +53,55 @@
v-hasPermi="['finance:charge:export']"
>导出
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+ {{ scope.row.orderChannel==='1'? "总代":"直签" }}
+
+
+
+
+
{{ parseTime(scope.row.bizChargeDate, '{y}-{m}-{d}') }}
-
+
{{ parseTime(scope.row.financeChargeDate, '{y}-{m}-{d}') }}
-
-
-
-
+
+
+
+
{{ $calc.sub(scope.row.incomeWithTaxTotal, scope.row.incomeWithoutTaxTotal) }}
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
- select id, order_code, biz_charge_date, finance_charge_date,
- income_with_tax_total, income_without_tax_total,
- cost_software_without_tax, cost_software_with_tax,
- cost_hardware_without_tax, cost_hardware_with_tax,
- cost_software_maint_without_tax, cost_software_maint_with_tax,
- cost_hardware_maint_without_tax, cost_hardware_maint_with_tax,
- cost_province_service_with_tax, cost_province_service_without_tax,
- cost_other_with_tax, cost_other_without_tax,
- remark, create_time, update_time,update_by, charge_status
- from oms_finance_charge
+ select t1.id, t1.order_code, t1.biz_charge_date, t1.finance_charge_date,
+ t1.income_with_tax_total, t1.income_without_tax_total,
+ t1.cost_software_without_tax, t1.cost_software_with_tax,
+ t1.cost_hardware_without_tax, t1.cost_hardware_with_tax,
+ t1.cost_software_maint_without_tax, t1.cost_software_maint_with_tax,
+ t1.cost_hardware_maint_without_tax, t1.cost_hardware_maint_with_tax,
+ t1.cost_province_service_with_tax, t1.cost_province_service_without_tax,
+ t1.cost_other_with_tax, t1.cost_other_without_tax,
+ t1.remark, t1.create_time, t1.update_time,t1.update_by, t1.charge_status
+ ,t3.project_code,t3.project_name,t2.order_channel,t2.supplier,t2.partner_code,t4.partner_name
+ from oms_finance_charge t1
+ left join project_order_info t2 on t1.order_code=t2.order_code
+ left join project_info t3 on t2.project_id=t3.id
+ left join partner_info t4 on t2.partner_code=t4.partner_code