|
@@ -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();
|
|
|
+ },
|
|
|
+ });
|
|
|
}}
|
|
|
>
|
|
|
确定修改
|