dev01 11 months ago
parent
commit
7b83a84f98

+ 2 - 2
src/app.jsx

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

+ 56 - 41
src/pages/applyDepart/publicContent.jsx

@@ -10,6 +10,7 @@ import { AtButton, AtTextarea, AtIcon, AtCalendar } from "taro-ui";
 import {
   addPublicRelease,
   getWorkingHoursList,
+  checkOrderNoDuration,
 } from "../../utils/servers/servers";
 
 import {
@@ -319,6 +320,51 @@ class PublicContent extends Component {
       popup: !this.state.popup
     })
   }
+  // 技术公出逻辑判断
+  checkOrderNoDuration() {
+    const _this = this
+    if (this.state.totalDuration == 0) {
+      return
+    }
+    checkOrderNoDuration({
+      duration: this.state.totalDuration,
+      orderNo: this.props.enterpriseInfor.orderNo,
+    })
+      .then((v) => {
+        if (v.error.length == 0) {
+          if (!v.data.code) {
+            let obj = v.data.data
+            _this.setState({
+              isInquiryOpened: true,
+              inquiryTitle: "提醒",
+              inquiryContent: `您准备公出${obj.userName}(${obj.contractNo}),
+              总计公出:${obj.peopleCount}人,${obj.timesCount}次,${obj.durationCount}时。
+              本合同${["低于1万元以下", "在1~3万", "在3~5万", "在5~10万", "在10万及以上"][obj.amountType]},
+              ${["原则上技术人员不可下户", `本次申请,已超出${obj.durationMax}小时`, `本次公出申请,已超出${obj.durationMax}小时`, `本次公出申请,已超出${obj.durationMax}小时`, ""][obj.amountType]}。
+              如需公出,需${obj.adminName}同意后,方可公出。请确定,是否发起公出申请!`,
+              inquiryFn: () => {
+                _this.onSubmit();
+              },
+            })
+          } else {
+            _this.setState({
+              isInquiryOpened: true,
+              inquiryTitle: "提醒",
+              inquiryContent: "您确定要提交此申请吗?",
+              inquiryFn: () => {
+                _this.onSubmit();
+              },
+            })
+          }
+        }
+        console.log("-------------", v.data.code)
+      })
+      .catch(() => {
+        this.setState({
+          loading: false,
+        });
+      });
+  }
 
   render() {
     const { cList, coorderList, popup } = this.state
@@ -328,7 +374,6 @@ class PublicContent extends Component {
         <View className="formItem">
           <View className="formName">公出企业:</View>
           <View className="formValue" style={{ flexDirection: "column", alignItems: "flex-end" }}>
-            {/* {this.props.enterpriseInfor.name} */}
             {
               !!this.props.enterpriseInfor.name && this.props.enterpriseInfor.name.indexOf(',') > -1
                 ? this.props.enterpriseInfor.name.split(',')?.map((item, index) => <View key={index}>{item}</View>)
@@ -369,38 +414,6 @@ class PublicContent extends Component {
               ? this.state.workTypeList[this.state.workType].name
               : ""}
           </View>
-          {/* <View className="formValue">
-            <picker
-              onChange={(e) => {
-                this.setState({
-                  workType: e.detail.value,
-                });
-                if (this.state.workTypeList[e.detail.value]) {
-                  let obj = Taro.getStorageSync("userInfor");
-                  obj.workTimeInfor = this.state.workTypeList[e.detail.value];
-                  Taro.setStorageSync("userInfor", obj);
-                  this.setState({
-                    rangeStartVal: "",
-                    rangeStartMinuteVal: "",
-                    rangeEndMinuteVal: "",
-                    rangeEndVal: "",
-                    validDates: [],
-                    totalDuration: 0,
-                  });
-                }
-              }}
-              value={this.state.workType}
-              rangeKey="name"
-              range={this.state.workTypeList}
-            >
-              <view style={{ display: "flex", alignItems: "center" }}>
-                {this.state.workTypeList[this.state.workType]
-                  ? this.state.workTypeList[this.state.workType].name
-                  : ""}
-                <AtIcon value="chevron-right" size="20" color="#bbbbbb" />
-              </view>
-            </picker>
-          </View> */}
         </View>
         <View className="formItem">
           <View className="formName">公出时间:</View>
@@ -696,14 +709,16 @@ class PublicContent extends Component {
               if (this.state.loading) {
                 return;
               }
-              this.setState({
-                isInquiryOpened: true,
-                inquiryTitle: "提醒",
-                inquiryContent: "您确定要提交此申请吗?",
-                inquiryFn: () => {
-                  this.onSubmit();
-                },
-              });
+              this.props.enterpriseInfor.type == 1
+                ? this.checkOrderNoDuration()
+                : this.setState({
+                  isInquiryOpened: true,
+                  inquiryTitle: "提醒",
+                  inquiryContent: "您确定要提交此申请吗?",
+                  inquiryFn: () => {
+                    this.onSubmit();
+                  },
+                });
             }}
           >
             提交申请

+ 7 - 17
src/pages/egressDetails/index.jsx

@@ -74,6 +74,7 @@ class EgressDetails extends Component {
   componentDidMount() {
     this.setState({
       current: this.$instance.router.params.status || "",
+      sonType: this.$instance.router.params.sonType || "",
     });
     this.getReleasetDails();
   }
@@ -205,8 +206,10 @@ class EgressDetails extends Component {
       Taro.showToast({ title: "请填写审批意见", icon: "none" });
       return;
     }
-    Taro.showLoading({ title: "加载中..." });
-    let isSuperior = this.state.current == "他人公出" ? false : true
+    // Taro.showLoading({ title: "加载中..." });
+    let isSuperior = this.state.current == "他人公出"
+      ? (this.state.sonType == 4 ? 2 : this.state.sonType == 5 && 3)
+      : 1
     examinePublicRelease(
       isSuperior,
       {
@@ -223,20 +226,6 @@ class EgressDetails extends Component {
             icon: "none",
           });
           this.getReleasetDails();
-
-          // Taro.showToast({
-          //   title: status === 0 ? "驳回成功" : "通过成功",
-          //   icon: "none",
-          // });
-          // this.state.dtails.status = status;
-          // this.setState({
-          //   dtails: this.state.dtails,
-          // });
-          // Taro.eventCenter.trigger("listOperation", {
-          //   type: this.state.dtails.permission,
-          //   index: this.$instance.router.params.index,
-          //   status: status === 0 ? 0 : 2,
-          // });
         } else {
           Taro.showToast({ title: v.error[0].message, icon: "none" });
         }
@@ -610,7 +599,8 @@ class EgressDetails extends Component {
               </View>
             ) : null}
             {((dtails.status === 1 && current === "审核") ||
-              (dtails.publicType == 1 && current === "他人公出" && dtails.myExamine == 0)) &&
+              (dtails.publicType == 1 && current === "他人公出" && dtails.myExamine == 0) ||
+              (dtails.techStartProcess == 1 && current === "他人公出" && dtails.myExamine == 0)) &&
               <View className="item">
                 <View className="title">
                   填写审批意见

+ 36 - 3
src/pages/egressDetails/modify.jsx

@@ -59,9 +59,43 @@ class Modify extends Component {
     // }
     let obj = {}
     if (this.state.type != 1) {
-      obj = { uids: this.getValue(this.state.newList, "id"), userNames: this.getValue(this.state.newList, "name"), type: this.state.type, newList: this.state.newList }
+      if (this.state.newList.length == 0) {
+        Taro.showToast({
+          title: "请先选择公出企业",
+          icon: 'none'
+        })
+        return
+      }
+      obj = {
+        uids: this.getValue(this.state.newList, "id"),
+        userNames: this.getValue(this.state.newList, "name"),
+        type: this.state.type,
+        newList: this.state.newList
+      }
     } else {
-      obj = { uids: this.getValue(this.state.jsList, "id"), userNames: this.getValue(this.state.jsList, "name"), type: this.state.type, newList: this.state.newList }
+      let contractNo = ""
+      let orderNo = ""
+      for (var i = 0; i < this.state.jsList.length; i++) {
+        if (!!this.state.jsList[i].contractNo) {
+          contractNo = this.state.jsList[i].contractNo
+          orderNo = this.state.jsList[i].orderNo
+        }
+      }
+      if (this.state.jsList.length == 0) {
+        Taro.showToast({
+          title: "必须选择一个派单编号",
+          icon: 'none'
+        })
+        return
+      }
+      obj = {
+        uids: this.getValue(this.state.jsList, "id"),
+        userNames: this.getValue(this.state.jsList, "name"),
+        type: this.state.type,
+        contractNo,
+        orderNo,
+        newList: this.state.newList
+      }
     }
     this.setState({
       dtails: {
@@ -70,7 +104,6 @@ class Modify extends Component {
       },
       data: obj,
     })
-
     this.setState({
       modifyType: 2,
     });

+ 30 - 5
src/pages/examine/index.jsx

@@ -38,9 +38,13 @@ class Examine extends Component {
         { title: '查看协单', type: 3 },
         { title: '他人公出', type: 4 }],
       current: 0,
+      sonTypes: [
+        { lable: '技术员公出', value: 5 },
+        { lable: '营销员公出', value: 4 },
+      ],
+      selcotype: 4,
       isPickerRender: false,
       validDates: '',
-
       list: [],
       pageNo: 1,
       listState: 'LOADING',
@@ -50,7 +54,6 @@ class Examine extends Component {
       rangeStartVal: '',
       rangeEndMinuteVal: '',
       rangeStartMinuteVal: '',
-
       id: "",
       rmk: "",
       isOpen: false,
@@ -130,9 +133,9 @@ class Examine extends Component {
       pageNo: pageNo,
       pageSize: 10,
       type: current === 0
-        ? "1" : current === 1
-          ? "2" : current === 2
-            ? "3" : current === 3 && "4",
+        ? 1 : current === 1
+          ? 2 : current === 2
+            ? 3 : current === 3 && this.state.selcotype,
       releaseStarts: this.state.rangeStartMinuteVal || undefined,
       releaseEnds: this.state.rangeEndMinuteVal || undefined,
       status: isNaN(parseInt(this.state.starts.id)) ? undefined : String(this.state.starts.id),
@@ -396,9 +399,31 @@ class Examine extends Component {
                 current={this.state.current}
                 index={index}
               >
+                {
+                  this.state.current === 3 &&
+                  <View className='navs'>
+                    {
+                      this.state.sonTypes.map((it) =>
+                        <View className={this.state.selcotype == it.value ? 'nitems' : 'nitem'}
+                          key={it.value}
+                          onClick={() => {
+                            this.setState({
+                              list: [],
+                              pageNo: 1,
+                              selcotype: it.value,
+                            }, () => {
+                              this.getPublicReleaseList();
+                            })
+                          }}
+                        >{it.lable}</View>
+                      )
+                    }
+                  </View>
+                }
                 <MyList
                   type={item.type}
                   title={item.title}
+                  sonType={this.state.selcotype}
                   typelist={this.state.typeList}
                   seeView={this.state.current}
                   list={this.state.list}

+ 29 - 0
src/pages/examine/index.less

@@ -333,4 +333,33 @@
     border-radius: 11px;
     margin-bottom: 20px;
   }
+
+  .navs {
+    display: flex;
+    flex-direction: row-reverse;
+    align-items: center;
+    margin-top: 20px;
+    padding: 0 23px;
+
+    .nitem {
+      font-size: 28px;
+      padding: 5px 10px;
+      border-radius: 10px;
+      margin: 0 5px;
+      border: 1px solid transparent;
+
+    }
+
+    .nitems {
+      font-size: 28px;
+      padding: 5px 10px;
+      border-radius: 10px;
+      margin: 0 5px;
+      color: #6190E8;
+      border: 1px solid #6190E8;
+
+    }
+
+  }
+
 }

+ 2 - 2
src/pages/examine/myList.jsx

@@ -14,7 +14,7 @@ class MyList extends Component {
 
   render() {
     let seeView = this.props.seeView;
-    const { title } = this.props
+    const { title, sonType } = this.props
     return (
       <View className="indexPage">
         <View className="list">
@@ -30,7 +30,7 @@ class MyList extends Component {
               className="item"
               onClick={() => {
                 Taro.navigateTo({
-                  url: "/pages/egressDetails/index?id=" + v.id + "&index=" + k + "&status=" + title,
+                  url: "/pages/egressDetails/index?id=" + v.id + "&index=" + k + "&status=" + title + "&sonType=" + sonType,
                 });
               }}
             >

+ 2 - 2
src/utils/config.js

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

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

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

+ 7 - 2
src/utils/servers/servers.js

@@ -66,8 +66,8 @@ export const publicReleaseClockIn = (postData = {}) => {
 }
 
 // 公出审批
-export const examinePublicRelease = (isSuperior = true, postData = {}) => {
-  return HTTPREQUEST.post(isSuperior ? '/api/admin/release/examinePublicRelease' : '/api/admin/release/MarketersExamine', postData)
+export const examinePublicRelease = (isSuperior = 1, postData = {}) => {
+  return HTTPREQUEST.post(isSuperior == 1 ? '/api/admin/release/examinePublicRelease' : isSuperior == 2 ? '/api/admin/release/marketersExamine' : '/api/admin/release/techExamine', postData)
 }
 
 //获取外出公出详情
@@ -128,4 +128,9 @@ export const deleteAssistant = (postData = {}) => {
 //修改公出地址
 export const updateLocation = (postData = {}) => {
   return HTTPREQUEST.post('/api/admin/release/updateLocation', postData)
+}
+
+// 技术公出发起情况
+export const checkOrderNoDuration = (postData = {}) => {
+  return HTTPREQUEST.get('/api/admin/release/checkOrderNoDuration', postData)
 }