diff --git a/oms_web/oms_vue/src/views/base/quotation/index.vue b/oms_web/oms_vue/src/views/base/quotation/index.vue
index 6b12fe85..462c3365 100644
--- a/oms_web/oms_vue/src/views/base/quotation/index.vue
+++ b/oms_web/oms_vue/src/views/base/quotation/index.vue
@@ -84,12 +84,13 @@
-
+
+
{{ parseTime(scope.row.createTime) }}
@@ -147,8 +148,13 @@
-
-
+
+
+
+ 报价单列表
+
+
+
@@ -571,3 +577,24 @@ export default {
}
};
+
diff --git a/ruoyi-sip/src/main/java/com/ruoyi/sip/domain/Quotation.java b/ruoyi-sip/src/main/java/com/ruoyi/sip/domain/Quotation.java
index 9ab86553..f59edbe0 100644
--- a/ruoyi-sip/src/main/java/com/ruoyi/sip/domain/Quotation.java
+++ b/ruoyi-sip/src/main/java/com/ruoyi/sip/domain/Quotation.java
@@ -73,6 +73,7 @@ public class Quotation extends BaseEntity {
* 客户名称
*/
private String customerName;
+ private String createByName;
// @Excel(name = "软件")
private List softwareProjectProductInfoList;
// @Excel(name = "终端")
diff --git a/ruoyi-sip/src/main/resources/mapper/Quotation/QuotationMapper.xml b/ruoyi-sip/src/main/resources/mapper/Quotation/QuotationMapper.xml
index 252e9e59..5899fcdb 100644
--- a/ruoyi-sip/src/main/resources/mapper/Quotation/QuotationMapper.xml
+++ b/ruoyi-sip/src/main/resources/mapper/Quotation/QuotationMapper.xml
@@ -30,7 +30,7 @@
select
t1.id, t1.quotation_code, t1.quotation_name, t1.quotation_amount, t1.discount_amount,
t1.quotation_status, t1.create_time, t1.create_by, t1.update_by, t1.update_time, t1.remark,
- t1.agent_code, t1.amount_type, t1.customer_name
+ t1.agent_code, t1.amount_type, t1.customer_name,u.user_name as create_by_name
from oms_quotation t1
LEFT join sys_user u on t1.create_by = u.user_id