From f598a903b5dbc4a593da37d2dc268c86d39fca03 Mon Sep 17 00:00:00 2001
From: wangjiuyun <1595161655@qq.com>
Date: Tue, 3 Jun 2025 17:38:14 +0800
Subject: [PATCH] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E6=96=B0=E5=A2=9E=E9=9D=99?=
=?UTF-8?q?=E6=80=8160%=EF=BC=8C=E5=8F=91=E8=B4=A7=E8=AE=B0=E5=BD=95?=
=?UTF-8?q?=E8=B0=83=E6=95=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../templates/manage/delivery/delivery.html | 27 +-
.../manage/delivery/orderDetail.html | 484 ++++++++++++++++++
.../resources/templates/manage/order/add.html | 1 +
.../templates/manage/order/edit.html | 54 +-
.../resources/templates/project/info/add.html | 354 +++++++++----
.../templates/project/info/project.html | 37 +-
.../project/info/selectCustomer.html | 137 +++++
.../templates/project/info/selectPartner.html | 111 ++++
.../templates/project/info/selectPeople.html | 96 ++++
9 files changed, 1166 insertions(+), 135 deletions(-)
create mode 100644 ruoyi-admin/src/main/resources/templates/manage/delivery/orderDetail.html
create mode 100644 ruoyi-admin/src/main/resources/templates/project/info/selectCustomer.html
create mode 100644 ruoyi-admin/src/main/resources/templates/project/info/selectPartner.html
create mode 100644 ruoyi-admin/src/main/resources/templates/project/info/selectPeople.html
diff --git a/ruoyi-admin/src/main/resources/templates/manage/delivery/delivery.html b/ruoyi-admin/src/main/resources/templates/manage/delivery/delivery.html
index 32368fe2..c9193635 100644
--- a/ruoyi-admin/src/main/resources/templates/manage/delivery/delivery.html
+++ b/ruoyi-admin/src/main/resources/templates/manage/delivery/delivery.html
@@ -95,11 +95,15 @@
},
{
field: 'orderCode',
- title: '关联合同编号'
+ title: '关联合同编号',
+
},
{
field: 'orderName',
- title: '关联合同名称'
+ title: '关联合同名称',
+ formatter:function (value,row){
+ return `${value}`
+ },
},
{
field: 'deliveryCode',
@@ -108,11 +112,12 @@
{
field: 'total',
title: '发货数量',
+ escape:true,
formatter: function(value, row, index) {
if (value){
- return value
+ return `${value}`
}else{
- return 0
+ return `0`
}
}
},
@@ -168,6 +173,20 @@
function doClose(index){
$.modal.close(index);
}
+ function openOrderDeail(value,row){
+ var options = {
+ title: "合同查看",
+ url: ctx + `manage/order/edit/${value}`,
+ maxmin: false,
+ full: false,
+ index:1000,
+ width: 1050,
+ callBack: doClose,
+ btn:false
+ };
+ window.localStorage.setItem('isOrderDetail',1)
+ $.modal.openOptions(options)
+ }