dev01 11 months ago
parent
commit
fed7e6cbd9

+ 1 - 1
src/components/common/listBottomStart/index.less

@@ -5,7 +5,7 @@
   .noMoreData{
     text-align: center;
     color: #969696;
-    font-size: 13px;
+    font-size: 20px;
   }
   .reload{
     display: flex;

+ 52 - 48
src/pages/applyDepart/enterprise.jsx

@@ -251,11 +251,11 @@ class Enterprise extends Component {
                     })
                     return
                   }
-
                   Taro.eventCenter.trigger("enterprise",
                     {
                       id: this.state.jsList.map(obj => { return obj.id; }).join(","),
                       name: this.state.jsList.map(obj => { return obj.name; }).join(","),
+                      list: this.state.jsList,
                       contractNo,
                       orderNo,
                     }
@@ -354,60 +354,64 @@ class Enterprise extends Component {
                 arrow="right"
                 iconInfo={{ size: 25, color: "#000000", value: "bookmark" }}
               />
-              <View style={{ marginTop: "10px" }}>
-                {this.state.orderNo.length > 0 ? (
-                  <View>
-                    {this.state.orderNo.map((v, k) => (
-                      <View
-                        key={k}
-                        style={{
-                          display: "flex",
-                          justifyContent: " center",
-                          marginBottom: "20px",
-                        }}
-                      >
-                        编号:<View>{v.contractNo}</View>
+              {
+                this.state.listState == "NO_MORE_DATA" &&
+                <View style={{ marginTop: "10px" }}>
+                  {this.state.orderNo.length > 0 ? (
+                    <View>
+                      {this.state.orderNo.map((v, k) => (
                         <View
+                          key={k}
                           style={{
-                            width: "60px",
-                            height: "24px",
-                            backgroundColor: "#5599FF",
-                            borderRadius: "15px",
-                            textAlign: "center",
-                            lineHeight: "24px",
-                            marginLeft: "20px",
-                            color: "white",
-                          }}
-                          circle
-                          onClick={() => {
-                            this.setState({
-                              listVisible: false,
-                            });
-                            v.name = this.state.listValue.name;
-                            v.id = this.state.listValue.id;
-
-                            let list = this.state.jsList
-                            list.push(v)
-                            this.setState({
-                              jsList: list
-                            })
-                            // Taro.eventCenter.trigger("enterprise", v);
+                            display: "flex",
+                            justifyContent: " center",
+                            marginBottom: "20px",
                           }}
                         >
-                          选择
+                          编号:<View>{v.contractNo}</View>
+                          <View
+                            style={{
+                              width: "60px",
+                              height: "24px",
+                              backgroundColor: "#5599FF",
+                              borderRadius: "15px",
+                              textAlign: "center",
+                              lineHeight: "24px",
+                              marginLeft: "20px",
+                              color: "white",
+                            }}
+                            circle
+                            onClick={() => {
+                              this.setState({
+                                listVisible: false,
+                              });
+                              v.name = this.state.listValue.name;
+                              v.id = this.state.listValue.id;
+                              v.aname = this.state.listValue.aname;
+                              v.aid = this.state.listValue.aid;
+                              v.status = this.state.listValue.status;
+                              let list = this.state.jsList
+                              list.push(v)
+                              this.setState({
+                                jsList: list
+                              })
+                              // Taro.eventCenter.trigger("enterprise", v);
+                            }}
+                          >
+                            选择
+                          </View>
                         </View>
+                      ))}{" "}
+                      <View style={{ color: "red", width: "260px", margin: "0 auto" }}>
+                        注:请选择正确的派单编号!公出信息将统计至对应的订单中。
                       </View>
-                    ))}{" "}
-                    <View style={{ color: "red", width: "260px", margin: "0 auto" }}>
-                      注:请选择正确的派单编号!公出信息将统计至对应的订单中。
                     </View>
-                  </View>
-                ) : (
-                  <View style={{ color: "red", width: "260px", margin: "0 auto" }}>
-                    该企业暂无订单,无法技术公出!请联系营销员查询派单情况
-                  </View>
-                )}
-              </View>
+                  ) :
+                    <View style={{ color: "red", width: "260px", margin: "0 auto" }}>
+                      该企业暂无订单,无法技术公出!请联系营销员查询派单情况
+                    </View>}
+                </View>
+              }
             </View>
           ) : (
             ""

+ 1 - 10
src/pages/applyDepart/index.jsx

@@ -172,18 +172,9 @@ class ApplyDepart extends Component {
                 punchClockInfor={this.state.punchClockInfor}
                 isShow={this.state.isShow}
                 tipList={this.state.tipList}
+                type={this.state.type}
               />
             </View>
-            {/* <View style={{display:this.state.current===3 ? 'block' : 'none'}}>
-            <AtListItem
-                  title={this.state.enterpriseInfor.name}
-                  arrow='right'
-                  iconInfo={{ size: 25, color: '#000000', value: 'bookmark', }}
-                  onClick={()=>{
-                    // Taro.eventCenter.trigger('enterprise', v)
-                  }}
-                />
-            </View> */}
           </View>
         </View>
       </View>

+ 25 - 8
src/pages/applyDepart/publicContent.jsx

@@ -55,6 +55,7 @@ class PublicContent extends Component {
       coorderList: [],
       cList: [],
       popup: false,
+      isNewshow: false,
     };
     this.onSubmit = this.onSubmit.bind(this);
     this.selectArrder = this.selectArrder.bind(this);
@@ -196,8 +197,10 @@ class PublicContent extends Component {
         let newData = {
           ...v.data,
           ...{
-            isShow: this.props.enterpriseInfor.type == 0 ? isTips(this.props.enterpriseInfor.list) : false,
-            list: this.props.enterpriseInfor.type == 0 ? getList(this.props.enterpriseInfor.list, "aname", true) : []
+            isShow: this.props.enterpriseInfor.type == 0
+              ? isTips(this.props.enterpriseInfor.list) : this.props.enterpriseInfor.type == 1
+                ? this.state.isNewshow : false,
+            list: getList(this.props.enterpriseInfor.list, "aname", true) || []
           }
         }
         if (v.error.length === 0) {
@@ -324,6 +327,7 @@ class PublicContent extends Component {
   checkOrderNoDuration() {
     const _this = this
     if (this.state.totalDuration == 0) {
+      Taro.showToast({ title: "请选择公出时间", icon: "none" });
       return
     }
     checkOrderNoDuration({
@@ -335,19 +339,28 @@ class PublicContent extends Component {
           if (!v.data.code) {
             let obj = v.data.data
             _this.setState({
+              isNewshow: true,
               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}同意后,方可公出。请确定,是否发起公出申请!`,
+              inquiryContent: <View style={{ padding: "10px 15px" }}>
+                <View>您准备公出<Text style={{ color: 'red' }}>{obj.userName}({obj.contractNo})</Text>,</View>
+                <View>总计公出:<Text style={{ color: 'red' }}>{obj.peopleCount}人,{obj.timesCount}次,{obj.durationCount}时</Text>。</View>
+                <View>
+                  <Text style={{ color: 'red' }}>
+                    本合同{["低于1万元以下", "在1~3万", "在3~5万", "在5~10万", "在10万及以上"][obj.amountType]},
+                    {["原则上技术人员不可下户", `本次申请,已超出${obj.durationMax}小时`, `本次公出申请,已超出${obj.durationMax}小时`, `本次公出申请,已超出${obj.durationMax}小时`, ""][obj.amountType]}
+                  </Text>。
+                </View>
+                <View>如需公出,需<Text style={{ color: 'red' }}>{obj.adminName}</Text>同意后,方可公出。</View>
+                <View>请确定,是否发起公出申请!</View>
+              </View>,
               inquiryFn: () => {
                 _this.onSubmit();
               },
             })
           } else {
             _this.setState({
+              isNewshow: false,
               isInquiryOpened: true,
               inquiryTitle: "提醒",
               inquiryContent: "您确定要提交此申请吗?",
@@ -356,8 +369,12 @@ class PublicContent extends Component {
               },
             })
           }
+        } else {
+          Taro.showToast({
+            title: v.error[0].message,
+            icon: "none",
+          });
         }
-        console.log("-------------", v.data.code)
       })
       .catch(() => {
         this.setState({

+ 21 - 19
src/pages/applyDepart/result.jsx

@@ -28,39 +28,41 @@ class Result extends Component {
     return (
       <View className='result'>
         <View className='resultIcon'>
-          {/*{*/}
-          {/*  this.props.resultState === 0 ?*/}
-          {/*    <Icon size='80' type='success' /> :*/}
-          {/*    this.props.resultState === 43101 ?*/}
-          {/*      <Icon size='80' type='info' /> :*/}
-          {/*      <Icon size='80' type='warn' />*/}
-          {/*}*/}
           {
             this.props.isShow
-              ? <Icon size='80' type='warn' color='#ff9900'/>
+              ? <Icon size='80' type='warn' color='#ff9900' />
               : <Icon size='80' type='success' />
           }
         </View>
         <View className='resultTitle'>
           <View>申请成功{!this.props.isShow && ",可以打卡了!"}</View>
-          <View className='resultError'>
-            {
-              this.props.resultState === 0 ?
-                '' :
-                this.props.resultState === 43101 || this.props.resultState === 2 || this.props.resultState === 40003 ?
-                  ('您可以联系上级审核' + '(' + this.props.resultState + ')') :
-                  this.props.resultState === 41030 || this.props.resultState === 47003 || this.props.resultState === 40037 ?
+          {
+            !this.props.isShow &&
+            <View className='resultError'>
+              {
+                this.props.resultState === 0 ?
+                  '' :
+                  this.props.resultState === 43101 || this.props.resultState === 2 || this.props.resultState === 40003 ?
                     ('您可以联系上级审核' + '(' + this.props.resultState + ')') :
-                    ('您可以联系上级审核' + '(' + this.props.resultState + ')')
-            }
-          </View>
+                    this.props.resultState === 41030 || this.props.resultState === 47003 || this.props.resultState === 40037 ?
+                      ('您可以联系上级审核' + '(' + this.props.resultState + ')') :
+                      ('您可以联系上级审核' + '(' + this.props.resultState + ')')
+              }
+            </View>
+          }
         </View>
         {
-          this.props.isShow &&
+          this.props.isShow && this.props.type != 1 &&
           <View className="resultTips">公出他人企业,需跟单人员“
             {this.props.tipList.toString()}
             ”审核同意,才可以打卡!!!</View>
         }
+        {
+          this.props.isShow && this.props.type == 1 &&
+          <View className="resultTips">已发出公出申请!待“
+            {this.props.tipList.toString()}
+            ”审核通过,方可打卡!</View>
+        }
         <View className='resultOperation'>
           <AtButton circle onClick={this.determine}>
             再次发起

+ 64 - 12
src/pages/egressDetails/index.jsx

@@ -21,6 +21,7 @@ import {
   updatePublicRelease,
   addAssistant,
   deleteAssistant,
+  checkOrderNoDuration,
 } from "../../utils/servers/servers";
 import { resourceAddress } from "../../utils/config";
 import "./index.less";
@@ -343,7 +344,56 @@ class EgressDetails extends Component {
       Taro.showToast({ title: "系统错误,请稍后再试", icon: "none" });
     });
   }
-
+  // 技术公出逻辑判断
+  checkOrderNoDuration() {
+    const _this = this
+    checkOrderNoDuration({
+      id: this.state.dtails.id,
+      duration: this.state.dtails.duration,
+      orderNo: this.state.dtails.orderNo,
+    })
+      .then((v) => {
+        if (v.error.length == 0) {
+          if (!v.data.code) {
+            let obj = v.data.data
+            _this.setState({
+              isNewshow: true,
+              isInquiryOpened: true,
+              inquiryTitle: "提醒",
+              inquiryContent: <View style={{ padding: "10px 15px" }}>
+                <View><Text style={{ color: 'red' }}>{obj.publicReleaseName}</Text>准备公出<Text style={{ color: 'red' }}>{obj.userName}({obj.contractNo})</Text>,</View>
+                <View>总计公出:<Text style={{ color: 'red' }}>{obj.peopleCount}人,{obj.timesCount}次,{obj.durationCount}时</Text>。</View>
+                <View>
+                  <Text style={{ color: 'red' }}>
+                    本合同{["低于1万元以下", "在1~3万", "在3~5万", "在5~10万", "在10万及以上"][obj.amountType]},
+                    {["原则上技术人员不可下户", `本次申请,已超出合同可公出时间标准${obj.durationMax}小时`, `本次申请,已超出已超出合同可公出时间标准${obj.durationMax}小时`, `本次申请,已超出已超出合同可公出时间标准${obj.durationMax}小时`, ""][obj.amountType]}
+                  </Text>。
+                </View>
+                <View>请确认是否同意本次公出?</View>
+              </View>,
+              inquiryFn: () => {
+                _this.agree(2);
+              },
+            })
+          } else {
+            _this.setState({
+              isNewshow: false,
+              isInquiryOpened: true,
+              inquiryTitle: "提醒",
+              inquiryContent: "您确定要同意此申请吗?",
+              inquiryFn: () => {
+                _this.agree(2);
+              },
+            })
+          }
+        }
+      })
+      .catch(() => {
+        this.setState({
+          loading: false,
+        });
+      });
+  }
 
   render() {
     const { dtails, current, cList, coorderList, popup } = this.state;
@@ -380,8 +430,8 @@ class EgressDetails extends Component {
                 {getClockState(dtails.status).title}
               </View>
               {
-                dtails.peList?.map(item =>
-                  <View style={{ fontSize: "15px", color: "#007AFF" }}>{item.aname + `(${["审核中", "已审核"][item.status]})`}</View>
+                !!dtails.adminExamine && dtails.adminExamine.split(',')?.map(item =>
+                  <View style={{ fontSize: "15px", color: "#007AFF" }}>{item}</View>
                 )
               }
               <View></View>
@@ -645,15 +695,17 @@ class EgressDetails extends Component {
                       if (this.state.loading) {
                         return;
                       }
-                      this.setState({
-                        isInquiryOpened: true,
-                        inquiryTitle: "提醒",
-                        inquiryContent: "您确定要同意此申请吗?",
-                        inquiryFn: () => {
-                          this.agree(2);
-                          // this.examinePublicRelease(2);
-                        },
-                      });
+                      dtails.type == 1
+                        ? this.checkOrderNoDuration()
+                        : this.setState({
+                          isInquiryOpened: true,
+                          inquiryTitle: "提醒",
+                          inquiryContent: "您确定要同意此申请吗?",
+                          inquiryFn: () => {
+                            this.agree(2);
+                            // this.examinePublicRelease(2);
+                          },
+                        });
                     }}
                   >
                     同意

+ 67 - 8
src/pages/egressDetails/publicContent.jsx

@@ -12,6 +12,7 @@ import {
   updatePublicRelease,
   getWorkingHoursList,
   addPublicRelease,
+  checkOrderNoDuration,
 } from "../../utils/servers/servers";
 
 import { getHours, getNumHourse, getUserWordTimes, getNameList, getList, isTips, } from "../../utils/tools";
@@ -514,6 +515,62 @@ class PublicContent extends Component {
     })
   }
 
+  // 技术公出逻辑判断
+  checkOrderNoDuration() {
+    const _this = this
+    if (this.state.totalDuration == 0) {
+      Taro.showToast({ title: "请选择公出时间", icon: "none" });
+      return
+    }
+    checkOrderNoDuration({
+      id: this.props.dtails.id,
+      duration: this.state.totalDuration,
+      orderNo: this.props.dtails.orderNo,
+    })
+      .then((v) => {
+        if (v.error.length == 0) {
+          if (!v.data.code) {
+            let obj = v.data.data
+            _this.setState({
+              isNewshow: true,
+              isInquiryOpened: true,
+              inquiryTitle: "提醒",
+              inquiryContent: <View style={{ padding: "10px 15px" }}>
+                <View>您准备公出<Text style={{ color: 'red' }}>{obj.userName}({obj.contractNo})</Text>,</View>
+                <View>总计公出:<Text style={{ color: 'red' }}>{obj.peopleCount}人,{obj.timesCount}次,{obj.durationCount}时</Text>。</View>
+                <View>
+                  <Text style={{ color: 'red' }}>
+                    本合同{["低于1万元以下", "在1~3万", "在3~5万", "在5~10万", "在10万及以上"][obj.amountType]},
+                    {["原则上技术人员不可下户", `本次申请,已超出${obj.durationMax}小时`, `本次公出申请,已超出${obj.durationMax}小时`, `本次公出申请,已超出${obj.durationMax}小时`, ""][obj.amountType]}
+                  </Text>。
+                </View>
+                <View>如需公出,需<Text style={{ color: 'red' }}>{obj.adminName}</Text>同意后,方可公出。</View>
+                <View>请确定,是否发起公出申请!</View>
+              </View>,
+              inquiryFn: () => {
+                _this.onSubmit();
+              },
+            })
+          } else {
+            _this.setState({
+              isNewshow: false,
+              isInquiryOpened: true,
+              inquiryTitle: "提醒",
+              inquiryContent: "您确定要提交此申请吗?",
+              inquiryFn: () => {
+                _this.onSubmit();
+              },
+            })
+          }
+        }
+      })
+      .catch(() => {
+        this.setState({
+          loading: false,
+        });
+      });
+  }
+
   render() {
     const { dtails, type, again = false } = this.props;
     const { cList, coorderList, popup } = this.state
@@ -936,14 +993,16 @@ class PublicContent extends Component {
                 loading={this.state.loading}
                 circle
                 onClick={() => {
-                  this.setState({
-                    isInquiryOpened: true,
-                    inquiryTitle: "提醒",
-                    inquiryContent: "您确定要修改此申请吗?",
-                    inquiryFn: () => {
-                      this.onSubmit();
-                    },
-                  });
+                  dtails.type == 1
+                    ? this.checkOrderNoDuration()
+                    : this.setState({
+                      isInquiryOpened: true,
+                      inquiryTitle: "提醒",
+                      inquiryContent: "您确定要修改此申请吗?",
+                      inquiryFn: () => {
+                        this.onSubmit();
+                      },
+                    });
                 }}
               >
                 确定修改

+ 0 - 1
src/utils/servers/interceptors.js

@@ -7,7 +7,6 @@ const customInterceptor = (chain) => {
   const requestParams = chain.requestParams
 
   return chain.proceed(requestParams).then(res => {
-    // console.log(res.statusCode,'proceed')
     // 只要请求成功,不管返回什么状态码,都走这个回调
     if (res.statusCode === HTTP_STATUS.NOT_FOUND) {
       Taro.setStorageSync("token", "");

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

@@ -29,7 +29,6 @@ export const login = (res) => {
       Taro.showToast({ title: '系统错误,请稍后重试', icon: 'none' });
       Taro.hideLoading();
       reject();
-      // console.log(err,'login')
     }
   })
 }