apply-clients 3.5.5-51 → 3.5.5-52
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1282,8 +1282,21 @@ export default {
|
|
|
1282
1282
|
if (((this.show_data.defname === '工程审批' && (this.show_data.f_apply_type === '民用散户报建流程'|| this.show_data.f_apply_type === '民用预留户报建流程'))|| (this.show_data.defname === '工程决算')) && this.show_data.button.button_name === '提交' && this.show_data.f_payment_ratio == "100%"){
|
|
1283
1283
|
this.show_data.button.button_name = '跳过'
|
|
1284
1284
|
}
|
|
1285
|
-
if (this.show_data.defname === '通气申请' && this.show_data.f_apply_type === '启封通气'&& this.show_data.button.button_name === '提交' && this.show_data.f_apply_source
|
|
1286
|
-
|
|
1285
|
+
if (this.show_data.defname === '通气申请' && this.show_data.f_apply_type === '启封通气'&& this.show_data.button.button_name === '提交' && this.show_data.f_apply_source == '自动发起' ){
|
|
1286
|
+
let data = {
|
|
1287
|
+
tablename: 't_apply',
|
|
1288
|
+
condition: `f_process_id = '${this.show_data.f_parent_process_id}'`
|
|
1289
|
+
}
|
|
1290
|
+
let res = await this.$resetpost(
|
|
1291
|
+
`${this.$androidUtil.getProxyUrl()}/rs/sql/apply_singleTable`,
|
|
1292
|
+
{data: data},
|
|
1293
|
+
{resolveMsg: null, rejectMsg: null}
|
|
1294
|
+
)
|
|
1295
|
+
if (res.data.length>0){
|
|
1296
|
+
if (res.data[0].f_payment_ratio == "100%"){
|
|
1297
|
+
this.show_data.button.button_name = '跳过'
|
|
1298
|
+
}
|
|
1299
|
+
}
|
|
1287
1300
|
}
|
|
1288
1301
|
if(this.show_data.defname === '工程派工' && this.show_data.button.button_name === '提交'){
|
|
1289
1302
|
this.show_data.f_budget_peoples = []
|