Skip to content
Snippets Groups Projects

1

Merged jiangxiaoming requested to merge jiangxiaoming into dev
Compare and
1 file
+ 3
3
Compare changes
  • Side-by-side
  • Inline
@@ -503,7 +503,7 @@ public class FileUtil {
data[1][0] = voiceOut.getSellerName() == null ? "销售方名称:" : "销售方名称:" + voiceOut.getSellerName();
data[1][1] = voiceOut.getSellerCode() == null ? "销售方编号:" : "销售方编号:" + voiceOut.getSellerCode();
data[1][2] = voiceOut.getRemark() == null ? "发票内容:" : "发票内容:" + voiceOut.getRemark();
data[1][2] = voiceOut.getRemark() == null ? "发票备注:" : "发票备注:" + voiceOut.getRemark();
data[2][0] = voiceOut.getInvoiceType() == null ? "开票类型:" : "开票类型:" + voiceOut.getInvoiceType();
data[2][1] = voiceOut.getInvoiceNo() == null ? "发票号码:" : "发票号码:" + voiceOut.getInvoiceNo();
@@ -539,8 +539,8 @@ public class FileUtil {
int rowIndex = 0; // 用于跟踪data数组的当前行索引
for (InvoiceDetailOut detailOut : detailOutList) {
data[rowIndex][0] = detailOut.getRowIndex() == null ? "" : detailOut.getRowIndex() + "";
data[rowIndex][1] = detailOut.getItemName() == null ? "" : detailOut.getItemName();
data[rowIndex][2] = detailOut.getItemName() == null ? "" : detailOut.getItemCode();
data[rowIndex][1] = detailOut.getItemName() == null ? "" : detailOut.getItemCode();
data[rowIndex][2] = detailOut.getItemName() == null ? "" : detailOut.getItemName();
data[rowIndex][3] = detailOut.getStandards() == null ? "" : detailOut.getStandards();
data[rowIndex][4] = detailOut.getUnit() == null ? "" : detailOut.getUnit();
data[rowIndex][5] = detailOut.getQuantity() == null ? "" : detailOut.getQuantity().toString();