From 9771627ac57e040aca03d7cc75d9a1804c040143 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期三, 09 四月 2025 23:28:37 +0800 Subject: [PATCH] Merge branch 'develop' --- src/tabviews/custom/components/module/invoice/index.jsx | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/tabviews/custom/components/module/invoice/index.jsx b/src/tabviews/custom/components/module/invoice/index.jsx index 5f130b2..dfb257f 100644 --- a/src/tabviews/custom/components/module/invoice/index.jsx +++ b/src/tabviews/custom/components/module/invoice/index.jsx @@ -813,6 +813,7 @@ if (options.length) { options.forEach(line => { let vals = [line.productcode, line.productname, line.spec, line.unit, line.bill_count, line.unitprice, line.amount_line, line.tax_classify_code, line.tax_classify_name, line.tax_rate, line.tax_amount, line.free_tax_mark || '', line.vat_special_management || '', line.invoice_lp || '', line.tax_item, line.tax_method, line.uuid, 'del'] + vals = vals.map(val => typeof(val) === 'number' ? val + '' : val) lines.push(vals) }) } -- Gitblit v1.8.0