Browse Source

1.供应商对账单单位不显示问题

heqinwei 7 years ago
parent
commit
a3e878b4cd

+ 9 - 0
applications/money/money-server/src/main/java/com/usoftchina/saas/money/po/VendorAcountView.java

@@ -35,6 +35,15 @@ public class VendorAcountView {
 
 
     private Double pd_nettotal;
     private Double pd_nettotal;
     private Integer companyId;
     private Integer companyId;
+    private String pd_remark;
+
+    public String getPd_remark() {
+        return pd_remark;
+    }
+
+    public void setPd_remark(String pd_remark) {
+        this.pd_remark = pd_remark;
+    }
 
 
     public Integer getCompanyId() {
     public Integer getCompanyId() {
         return companyId;
         return companyId;

+ 1 - 0
applications/money/money-server/src/main/resources/mapper/VendorAcountViewMapper.xml

@@ -19,6 +19,7 @@
     <result column="pd_netprice" property="pd_netprice" jdbcType="DOUBLE" />
     <result column="pd_netprice" property="pd_netprice" jdbcType="DOUBLE" />
     <result column="pd_nettotal" property="pd_nettotal" jdbcType="DOUBLE" />
     <result column="pd_nettotal" property="pd_nettotal" jdbcType="DOUBLE" />
     <result column="companyId" property="companyId" jdbcType="INTEGER" />
     <result column="companyId" property="companyId" jdbcType="INTEGER" />
+    <result column="pd_remark" property="pd_remark" jdbcType="VARCHAR"/>
   </resultMap>
   </resultMap>
 
 
   <select id="selectByCondition" resultMap="BaseResultMap">
   <select id="selectByCondition" resultMap="BaseResultMap">

+ 1 - 1
frontend/saas-web/app/view/money/report/VendorCheck.js

@@ -66,7 +66,7 @@ Ext.define('saas.view.money.report.VendorCheck', {
             dataIndex: 'pr_spec'
             dataIndex: 'pr_spec'
         }, {
         }, {
             text: '单位',
             text: '单位',
-            dataIndex: 'pr_unit'
+            dataIndex: 'pd_unit'
         }, {
         }, {
             text: '采购数量',
             text: '采购数量',
             xtype: 'numbercolumn',
             xtype: 'numbercolumn',