|
@@ -3356,9 +3356,9 @@ export class HushijiandanComponent implements OnInit {
|
3356
|
3356
|
return;
|
3357
|
3357
|
}
|
3358
|
3358
|
shortcutForm && (this.isShowBuildQuickConfirm = false);
|
3359
|
|
- this.otherBuildOrder();
|
|
3359
|
+ this.otherBuildOrder(undefined, buildType);
|
3360
|
3360
|
}
|
3361
|
|
- otherBuildOrder(otherList?){
|
|
3361
|
+ otherBuildOrder(otherList?,buildType?){
|
3362
|
3362
|
var that = this;
|
3363
|
3363
|
// 其他
|
3364
|
3364
|
let workOrderRemark = '';
|
|
@@ -3402,6 +3402,7 @@ export class HushijiandanComponent implements OnInit {
|
3402
|
3402
|
.subscribe((data) => {
|
3403
|
3403
|
this.message.remove(this.jdFlagId);
|
3404
|
3404
|
that.loading5 = false;
|
|
3405
|
+
|
3405
|
3406
|
if (data.status == 200 && (that.buildType == "other" || that.buildType == "ordinary")) {
|
3406
|
3407
|
that.showPromptModal("创建", true, "", that.buildType);
|
3407
|
3408
|
this.getTodayNum();
|
|
@@ -3418,6 +3419,9 @@ export class HushijiandanComponent implements OnInit {
|
3418
|
3419
|
} else {
|
3419
|
3420
|
that.showPromptModal("创建", false, data.msg);
|
3420
|
3421
|
}
|
|
3422
|
+
|
|
3423
|
+ // 重置
|
|
3424
|
+ this.getDeptTaskType();
|
3421
|
3425
|
});
|
3422
|
3426
|
})
|
3423
|
3427
|
}
|