Browse Source

限定项目

dev01 10 months ago
parent
commit
d60318ea74

+ 1 - 1
src/app.jsx

@@ -89,7 +89,7 @@ class App extends Component {
       // 生产
       url: 'wss://bm.jishutao.com/webSocketServer',
       // 本地
-      // url: 'wss://172.16.0.255:8080/webSocketServer'
+      // url: 'wss://172.16.1.199:8080/webSocketServer'
       // 测试
       // url: 'wss://uat.jishutao.com/webSocketServer'
     })

+ 41 - 8
src/pages/applyDepart/enterprise.jsx

@@ -1,6 +1,10 @@
 import React, { Component } from "react";
 import { View, Text, Icon } from "@tarojs/components";
-import { getUserByName, getOrderByUid } from "../../utils/servers/servers";
+import {
+  getUserByName,
+  getOrderByUid,
+  getRestrictProjectUser,
+} from "../../utils/servers/servers";
 import { AtSearchBar, AtListItem, AtButton, AtIcon } from "taro-ui";
 import "taro-ui/dist/style/components/search-bar.scss";
 import "taro-ui/dist/style/components/button.scss";
@@ -24,6 +28,7 @@ class Enterprise extends Component {
       orderNo: [],
       newList: [],
       jsList: [],
+      userList: [],
     };
     this.onChange = this.onChange.bind(this);
     this.getList = this.getList.bind(this);
@@ -44,6 +49,40 @@ class Enterprise extends Component {
     });
   }
 
+  componentDidUpdate(props) {
+    if (props.type !== this.props.type) {
+      this.setState({
+        newList: []
+      })
+    }
+  }
+
+  getRestrictProjectUser() {
+    getRestrictProjectUser({
+      ids: this.state.newList.map(obj => { return obj.id; }).join(","),
+    })
+      .then((v) => {
+        if (v.error.length === 0) {
+          Taro.eventCenter.trigger("enterprise",
+            {
+              id: this.state.newList.map(obj => { return obj.id; }).join(","),
+              name: this.state.newList.map(obj => { return obj.name; }).join(","),
+              list: this.state.newList,
+              userList: v.data,
+            }
+          );
+        } else {
+          Taro.showToast({
+            title: v.error[0].message,
+            icon: "none",
+          });
+        }
+      })
+      .catch((err) => {
+
+      });
+  }
+
   onChange(value, lv = true) {
     this.setState({
       value,
@@ -193,13 +232,7 @@ class Enterprise extends Component {
             <View className="slbt">
               <AtButton size="small" type='primary'
                 onClick={() => {
-                  Taro.eventCenter.trigger("enterprise",
-                    {
-                      id: this.state.newList.map(obj => { return obj.id; }).join(","),
-                      name: this.state.newList.map(obj => { return obj.name; }).join(","),
-                      list: this.state.newList,
-                    }
-                  );
+                  this.getRestrictProjectUser()
                 }}
               >确定公出列表</AtButton>
             </View>

+ 93 - 55
src/pages/applyDepart/publicContent.jsx

@@ -11,6 +11,7 @@ import {
   addPublicRelease,
   getWorkingHoursList,
   checkOrderNoDuration,
+  getRestrictProjectUser,
 } from "../../utils/servers/servers";
 
 import {
@@ -18,8 +19,7 @@ import {
   getNumHourse,
   getUserWordTimes,
   getNameList,
-  getList,
-  isTips,
+  isPublicity,
 } from "../../utils/tools";
 
 import "taro-ui/dist/style/components/form.scss";
@@ -108,47 +108,6 @@ class PublicContent extends Component {
 
   onSubmit() {
     let objectType = this.props.enterpriseInfor.id.indexOf(',') > -1 ? 1 : 0
-    if (!this.state.rangeStartMinuteVal) {
-      Taro.showToast({ title: "请选择公出时间", icon: "none" });
-      return;
-    }
-    if (!this.state.rangeEndMinuteVal) {
-      Taro.showToast({ title: "请选择公出时间", icon: "none" });
-      return;
-    }
-    if (
-      !(
-        this.props.selectArrderLocation.longitude &&
-        this.props.selectArrderLocation.latitude
-      )
-    ) {
-      Taro.showToast({ title: "请选择公出地点", icon: "none" });
-      return;
-    }
-    if (!this.state.reason) {
-      Taro.showToast({ title: "请输入公出目标", icon: "none" });
-      return;
-    }
-    if (!this.state.plan && this.props.enterpriseInfor.type != 2) {
-      Taro.showToast({ title: "请输入公出计划", icon: "none" });
-      return;
-    }
-    if (!this.state.expectedEffect && this.props.enterpriseInfor.type != 2) {
-      Taro.showToast({ title: "请输入预计效果", icon: "none" });
-      return;
-    }
-    if (this.state.totalDuration === 0) {
-      Taro.showToast({
-        title: "请选择公出时间,目前设置公出时间不足0.5小时",
-        icon: "none",
-      });
-      return;
-    }
-    let info = Taro.getStorageSync("userInfor");
-    if (this.state.totalDuration > info.workTimeInfor.minHours && this.state.imgs.length == 0) {
-      Taro.showToast({ title: "请上传附件", icon: "none" });
-      return
-    }
     this.setState({
       loading: true,
     });
@@ -198,9 +157,9 @@ class PublicContent extends Component {
           ...v.data,
           ...{
             isShow: this.props.enterpriseInfor.type == 0
-              ? isTips(this.props.enterpriseInfor.list) : this.props.enterpriseInfor.type == 1
+              ? isPublicity(this.props.enterpriseInfor.userList, 0) : this.props.enterpriseInfor.type == 1
                 ? this.state.isNewshow : false,
-            list: getList(this.props.enterpriseInfor.type, this.props.enterpriseInfor.list, "aname", true) || []
+            list: isPublicity(this.props.enterpriseInfor.userList, 1)
           }
         }
         if (v.error.length === 0) {
@@ -382,6 +341,41 @@ class PublicContent extends Component {
         });
       });
   }
+  // 业务公出限定项目
+  getRestrictProjectUser() {
+    const _this = this
+    getRestrictProjectUser({
+      ids: this.props.enterpriseInfor.id,
+    })
+      .then((v) => {
+        if (v.error.length === 0) {
+          let arr = []
+          if (v.data && v.data.length > 0) {
+            v.data.forEach(e => {
+              e.type == 1 && arr.push(e["userName"])
+            })
+          }
+          this.setState({
+            isInquiryOpened: true,
+            inquiryTitle: "提醒",
+            inquiryContent: arr.length > 0
+              ? <View style={{ color: 'red' }}>您公出的{arr.toString()},为限定项目的企业,建议您由经理协助公出恰谈!</View>
+              : "您确定要提交此申请吗?",
+            inquiryFn: () => {
+              _this.onSubmit();
+            },
+          });
+        } else {
+          Taro.showToast({
+            title: v.error[0].message,
+            icon: "none",
+          });
+        }
+      })
+      .catch((err) => {
+
+      });
+  }
 
   render() {
     const { cList, coorderList, popup } = this.state
@@ -399,9 +393,9 @@ class PublicContent extends Component {
           </View>
         </View>
         {
-          (this.props.enterpriseInfor.type == 0 && isTips(this.props.enterpriseInfor.list)) &&
+          (this.props.enterpriseInfor.type == 0 && isPublicity(this.props.enterpriseInfor.userList, 0)) &&
           <View className="othersTips">您正在申请公出他人企业:需跟单员“
-            {getList(this.props.enterpriseInfor.type, this.props.enterpriseInfor.list, "aname", true).toString()}
+            {isPublicity(this.props.enterpriseInfor.userList, 1).toString()}
             ”审核同意,您才可公出!</View>
         }
         <View className="formItem">
@@ -726,16 +720,60 @@ class PublicContent extends Component {
               if (this.state.loading) {
                 return;
               }
+              if (!this.state.rangeStartMinuteVal) {
+                Taro.showToast({ title: "请选择公出时间", icon: "none" });
+                return;
+              }
+              if (!this.state.rangeEndMinuteVal) {
+                Taro.showToast({ title: "请选择公出时间", icon: "none" });
+                return;
+              }
+              if (
+                !(
+                  this.props.selectArrderLocation.longitude &&
+                  this.props.selectArrderLocation.latitude
+                )
+              ) {
+                Taro.showToast({ title: "请选择公出地点", icon: "none" });
+                return;
+              }
+              if (!this.state.reason) {
+                Taro.showToast({ title: "请输入公出目标", icon: "none" });
+                return;
+              }
+              if (!this.state.plan && this.props.enterpriseInfor.type != 2) {
+                Taro.showToast({ title: "请输入公出计划", icon: "none" });
+                return;
+              }
+              if (!this.state.expectedEffect && this.props.enterpriseInfor.type != 2) {
+                Taro.showToast({ title: "请输入预计效果", icon: "none" });
+                return;
+              }
+              if (this.state.totalDuration === 0) {
+                Taro.showToast({
+                  title: "请选择公出时间,目前设置公出时间不足0.5小时",
+                  icon: "none",
+                });
+                return;
+              }
+              let info = Taro.getStorageSync("userInfor");
+              if (this.state.totalDuration > info.workTimeInfor.minHours && this.state.imgs.length == 0) {
+                Taro.showToast({ title: "请上传附件", icon: "none" });
+                return
+              }
+
               this.props.enterpriseInfor.type == 1
                 ? this.checkOrderNoDuration()
-                : this.setState({
-                  isInquiryOpened: true,
-                  inquiryTitle: "提醒",
-                  inquiryContent: "您确定要提交此申请吗?",
-                  inquiryFn: () => {
-                    this.onSubmit();
-                  },
-                });
+                : this.props.enterpriseInfor.type == 0
+                  ? this.getRestrictProjectUser()
+                  : this.setState({
+                    isInquiryOpened: true,
+                    inquiryTitle: "提醒",
+                    inquiryContent: "您确定要提交此申请吗?",
+                    inquiryFn: () => {
+                      this.onSubmit();
+                    },
+                  });
             }}
           >
             提交申请

+ 1 - 1
src/pages/applyDepart/publicContent.less

@@ -125,7 +125,7 @@
     text-align: center;
     color: #f00;
     background: #c9c9c9;
-    padding: 20px 100px;
+    // padding: 20px 100px;
     margin-bottom: 28px;
     
   }

+ 30 - 6
src/pages/egressDetails/index.jsx

@@ -22,6 +22,7 @@ import {
   addAssistant,
   deleteAssistant,
   checkOrderNoDuration,
+  getRestrictProjectUser,
 } from "../../utils/servers/servers";
 import { resourceAddress } from "../../utils/config";
 import "./index.less";
@@ -41,7 +42,7 @@ import Revoke from "../../image/revoke.png";
 
 import ImagePicker from "../../components/common/imagePicker";
 import MessageNoticebar from "../../components/common/messageNoticebar";
-import { getClockState, unique } from "../../utils/tools";
+import { getClockState, unique, getUids } from "../../utils/tools";
 import HistoricalClock from "../../components/historicalClock";
 import UserQuery from "../../components/common/userquery"; //选择协单人弹窗
 
@@ -66,6 +67,7 @@ class EgressDetails extends Component {
       cList: [],
       popup: false,
       selid: "",
+      userList: [],
     };
     this.examinePublicRelease = this.examinePublicRelease.bind(this);
     this.getReleasetDails = this.getReleasetDails.bind(this);
@@ -91,6 +93,31 @@ class EgressDetails extends Component {
     }
   }
 
+  getRestrictProjectUser() {
+    const { dtails } = this.state
+    getRestrictProjectUser({
+      ids: dtails.uids,
+    })
+      .then((v) => {
+        if (v.error.length === 0) {
+          this.setState({
+            userList: v.data,
+            isModifyOpened: true,
+            isVerify: true,
+            foc: false,
+          })
+        } else {
+          Taro.showToast({
+            title: v.error[0].message,
+            icon: "none",
+          });
+        }
+      })
+      .catch((err) => {
+
+      });
+  }
+
   getReleasetDails() {
     getReleasetDails({
       id: this.$instance.router.params.id,
@@ -775,11 +802,7 @@ class EgressDetails extends Component {
                           });
                           return;
                         }
-                        this.setState({
-                          isModifyOpened: true,
-                          isVerify: true,
-                          foc: false,
-                        });
+                        this.getRestrictProjectUser()
                       },
                     });
                   }}
@@ -827,6 +850,7 @@ class EgressDetails extends Component {
             permission={dtails.permission}
             index={this.$instance.router.params.index}
             dtails={dtails}
+            userList={this.state.userList}
             locationInfor={this.state.selectArrderLocation}
             id={this.$instance.router.params.id}
             isOpened={this.state.isModifyOpened}

+ 28 - 1
src/pages/egressDetails/modify.jsx

@@ -5,13 +5,16 @@ import {
   AtModalAction,
   AtModalContent,
   AtButton,
+  isPublicity,
 } from "taro-ui";
 import { Button, View } from "@tarojs/components";
 import Enterprise from "./enterprise";
 import PublicContent from "./publicContent";
 import { getNewList } from "../../utils/tools";
 
-import { updatePublicRelease } from "../../utils/servers/servers";
+import {
+  getRestrictProjectUser
+} from "../../utils/servers/servers";
 
 import "taro-ui/dist/style/components/modal.scss";
 import Taro from "@tarojs/taro";
@@ -22,6 +25,7 @@ class Modify extends Component {
     this.state = {
       data: {},
       dtails: props.dtails,
+      userList: props.userList,
       modifyType: 2,
       // colors: "primary",
       // color: "secondary",
@@ -42,6 +46,27 @@ class Modify extends Component {
     return arr.map(obj => { return obj[key]; }).join(",")
   }
 
+  getRestrictProjectUser() {
+    getRestrictProjectUser({
+      ids: this.getValue(this.state.newList, "id"),
+    })
+      .then((v) => {
+        if (v.error.length === 0) {
+          this.setState({
+            userList: v.data
+          })
+        } else {
+          Taro.showToast({
+            title: v.error[0].message,
+            icon: "none",
+          });
+        }
+      })
+      .catch((err) => {
+
+      });
+  }
+
   submit() {
     // if (this.state.type == 1) {
     //   Taro.showToast({ title: "技术公出请直接点击公出企业", icon: "none" });
@@ -66,6 +91,7 @@ class Modify extends Component {
         })
         return
       }
+      this.getRestrictProjectUser()
       obj = {
         uids: this.getValue(this.state.newList, "id"),
         userNames: this.getValue(this.state.newList, "name"),
@@ -217,6 +243,7 @@ class Modify extends Component {
               }}
               locationInfor={this.props.locationInfor}
               dtails={this.state.dtails}
+              userList={this.state.userList}
               isOpened={this.props.isOpened}
               isVerify={this.props.isVerify}
               reason={this.props.reason}//修改原因

+ 104 - 57
src/pages/egressDetails/publicContent.jsx

@@ -13,9 +13,16 @@ import {
   getWorkingHoursList,
   addPublicRelease,
   checkOrderNoDuration,
+  getRestrictProjectUser,
 } from "../../utils/servers/servers";
 
-import { getHours, getNumHourse, getUserWordTimes, getNameList, getList, isTips, } from "../../utils/tools";
+import {
+  getHours,
+  getNumHourse,
+  getUserWordTimes,
+  getNameList,
+  isPublicity,
+} from "../../utils/tools";
 
 import "taro-ui/dist/style/components/form.scss";
 import "taro-ui/dist/style/components/button.scss";
@@ -174,48 +181,7 @@ class PublicContent extends Component {
   onSubmit() {
     const { isVerify = false } = this.props;
     let objectType = this.props.dtails.uids.indexOf(',') > -1 ? 1 : 0
-    if (!this.props.dtails.uids) {
-      Taro.showToast({ title: "请选择公出企业", icon: "none" });
-      return;
-    }
-    if (!this.state.rangeStartMinuteVal) {
-      Taro.showToast({ title: "请选择公出时间", icon: "none" });
-      return;
-    }
-    if (!this.state.rangeEndMinuteVal) {
-      Taro.showToast({ title: "请选择公出时间", icon: "none" });
-      return;
-    }
-    if (
-      !(this.props.locationInfor.longitude && this.props.locationInfor.latitude)
-    ) {
-      Taro.showToast({ title: "请选择公出地点", icon: "none" });
-      return;
-    }
-    if (!this.state.reason) {
-      Taro.showToast({ title: "请输入公出目标", icon: "none" });
-      return;
-    }
-    if (!this.state.plan && this.props.dtails.type != 2) {
-      Taro.showToast({ title: "请输入公出计划", icon: "none" });
-      return;
-    }
-    if (!this.state.expectedEffect && this.props.dtails.type != 2) {
-      Taro.showToast({ title: "请输入预计效果", icon: "none" });
-      return;
-    }
-    if (this.state.totalDuration === 0) {
-      Taro.showToast({
-        title: "请选择公出时间,目前设置公出时间不足0.5小时",
-        icon: "none",
-      });
-      return;
-    }
-    let info = Taro.getStorageSync("userInfor");
-    if (this.state.totalDuration > info.workTimeInfor.minHours && this.state.imgs.length == 0) {
-      Taro.showToast({ title: "请上传附件", icon: "none" });
-      return
-    }
+
     this.setState({
       loading: true,
     });
@@ -574,15 +540,50 @@ class PublicContent extends Component {
         });
       });
   }
+  // 业务公出限定项目
+  getRestrictProjectUser() {
+    const _this = this
+    getRestrictProjectUser({
+      ids: this.props.dtails.uids,
+    })
+      .then((v) => {
+        if (v.error.length === 0) {
+          let arr = []
+          if (v.data && v.data.length > 0) {
+            v.data.forEach(e => {
+              e.type == 1 && arr.push(e["userName"])
+            })
+          }
+          this.setState({
+            isInquiryOpened: true,
+            inquiryTitle: "提醒",
+            inquiryContent: arr.length > 0
+              ? <View style={{ color: 'red' }}>您公出的{arr.toString()},为限定项目的企业,建议您由经理协助公出恰谈!</View>
+              : "您确定要提交此申请吗?",
+            inquiryFn: () => {
+              _this.onSubmit();
+            },
+          });
+        } else {
+          Taro.showToast({
+            title: v.error[0].message,
+            icon: "none",
+          });
+        }
+      })
+      .catch((err) => {
+
+      });
+  }
 
   render() {
-    const { dtails, type, again = false } = this.props;
-    const { cList, coorderList, popup } = this.state;
+    const { dtails, userList, type, again = false } = this.props;
+    const { cList, coorderList, popup, } = this.state;
     const info = Taro.getStorageSync("userInfor");
     const isShow = dtails.type == 0
-      ? isTips(dtails.peList) : dtails.type == 1
+      ? isPublicity(userList, 0) : dtails.type == 1
         ? this.state.isNewshow : false;
-    const tipList = getList(dtails.type, dtails.peList, "aname", true) || [];
+    const tipList = isPublicity(userList, 1);
     return (
       <View className="publicContent">
         <View className="formItem">
@@ -597,9 +598,9 @@ class PublicContent extends Component {
           </View>
         </View>
         {
-          (dtails.type == 0 && !!dtails.newList && isTips(dtails.newList)) &&
+          (dtails.type == 0 && isPublicity(userList, 0)) &&
           <View className="othersTips">您正在申请公出他人企业:需跟单员“
-            {getList(dtails.type, dtails.newList, "aname", true).toString()}
+            {isPublicity(userList, 1).toString()}
             ”审核同意,您才可公出!</View>
         }
         <View className="formItem">
@@ -1003,16 +1004,62 @@ class PublicContent extends Component {
                 loading={this.state.loading}
                 circle
                 onClick={() => {
+
+                  if (!this.props.dtails.uids) {
+                    Taro.showToast({ title: "请选择公出企业", icon: "none" });
+                    return;
+                  }
+                  if (!this.state.rangeStartMinuteVal) {
+                    Taro.showToast({ title: "请选择公出时间", icon: "none" });
+                    return;
+                  }
+                  if (!this.state.rangeEndMinuteVal) {
+                    Taro.showToast({ title: "请选择公出时间", icon: "none" });
+                    return;
+                  }
+                  if (
+                    !(this.props.locationInfor.longitude && this.props.locationInfor.latitude)
+                  ) {
+                    Taro.showToast({ title: "请选择公出地点", icon: "none" });
+                    return;
+                  }
+                  if (!this.state.reason) {
+                    Taro.showToast({ title: "请输入公出目标", icon: "none" });
+                    return;
+                  }
+                  if (!this.state.plan && this.props.dtails.type != 2) {
+                    Taro.showToast({ title: "请输入公出计划", icon: "none" });
+                    return;
+                  }
+                  if (!this.state.expectedEffect && this.props.dtails.type != 2) {
+                    Taro.showToast({ title: "请输入预计效果", icon: "none" });
+                    return;
+                  }
+                  if (this.state.totalDuration === 0) {
+                    Taro.showToast({
+                      title: "请选择公出时间,目前设置公出时间不足0.5小时",
+                      icon: "none",
+                    });
+                    return;
+                  }
+                  let info = Taro.getStorageSync("userInfor");
+                  if (this.state.totalDuration > info.workTimeInfor.minHours && this.state.imgs.length == 0) {
+                    Taro.showToast({ title: "请上传附件", icon: "none" });
+                    return
+                  }
+
                   dtails.type == 1
                     ? this.checkOrderNoDuration(1)
-                    : this.setState({
-                      isInquiryOpened: true,
-                      inquiryTitle: "提醒",
-                      inquiryContent: "您确定要修改此申请吗?",
-                      inquiryFn: () => {
-                        this.onSubmit();
-                      },
-                    });
+                    : dtails.type == 0
+                      ? this.getRestrictProjectUser()
+                      : this.setState({
+                        isInquiryOpened: true,
+                        inquiryTitle: "提醒",
+                        inquiryContent: "您确定要修改此申请吗?",
+                        inquiryFn: () => {
+                          this.onSubmit();
+                        },
+                      });
                 }}
               >
                 确定修改

+ 1 - 1
src/utils/config.js

@@ -1,5 +1,5 @@
 // 本地
-// export const resourceAddress = 'http://172.16.0.255:3000/upload;'
+// export const resourceAddress = 'http://172.16.1.199/:3000/upload;'
 // 生产
 export const resourceAddress = 'https://s.jishutao.com/upload';
 // 测试

+ 1 - 1
src/utils/servers/baseUrl.js

@@ -7,7 +7,7 @@ const getBaseUrl = (url) => {
     BASE_URL = 'https://bm.jishutao.com'
   } else {
     // 生产环境
-    // BASE_URL = 'http://172.16.0.255:8080'
+    // BASE_URL = 'http://172.16.1.199:8080'
     // BASE_URL = 'https://uat.jishutao.com'
     BASE_URL = 'https://bm.jishutao.com'
   }

+ 5 - 0
src/utils/servers/servers.js

@@ -132,4 +132,9 @@ export const updateLocation = (postData = {}) => {
 // 技术公出发起情况
 export const checkOrderNoDuration = (postData = {}) => {
   return HTTPREQUEST.get('/api/admin/release/checkOrderNoDuration', postData)
+}
+
+// 限定项目客户情况
+export const getRestrictProjectUser = (postData = {}) => {
+  return HTTPREQUEST.get('/api/restrict/Project/getRestrictProjectUser', postData)
 }

+ 37 - 0
src/utils/tools/index.js

@@ -177,6 +177,17 @@ export const getNewOptions = (arr) => {
   return list
 }
 
+// 提取数组元素
+export const getUids = (array, key) => {
+  let arr = []
+  if (array && array.length > 0) {
+    array.forEach(e => {
+      arr.push(e[key])
+    });
+  }
+  return arr
+}
+
 // 提取数组里的某一项组成新数组(公出他人企业限制)
 export const getList = (type, arr, name, isUnique = false) => {
   let list = []
@@ -207,6 +218,32 @@ export const isTips = (arr) => {
   return show
 }
 
+export const isPublicity = (array, type) => {
+  if (array && array.length > 0) {
+    if (type == 0) {
+      let show = false
+      for (var i = 0; i < array.length; i++) {
+        if (array[i].type == 2) {
+          show = true
+        }
+      }
+      return show
+    }
+    if (type == 1) {
+      let list = []
+      for (var i = 0; i < array.length; i++) {
+        let name = array[i].adminName;
+        let t = array[i].type;
+        if (!!name && t == 2) {
+          list.push(name)
+        }
+      }
+      unique(list)
+      return list
+    }
+  }
+}
+
 // 数组去重
 export const unique = (arr, key) => {
   if (arr.length <= 1) {