telephone-clients 3.0.86 → 3.0.88
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
|
@@ -279,6 +279,7 @@ getallfee(){
|
|
|
279
279
|
unit:"",
|
|
280
280
|
f_material_price:"",
|
|
281
281
|
f_typenumber:"",
|
|
282
|
+
f_typename:""
|
|
282
283
|
})
|
|
283
284
|
},
|
|
284
285
|
getmaterialTYPE(){
|
|
@@ -522,6 +523,7 @@ getallfee(){
|
|
|
522
523
|
}
|
|
523
524
|
for (let i = 0; i < this.material.length; i++) {
|
|
524
525
|
this.material[i].f_process_id = this.selectdata.f_process_id
|
|
526
|
+
this.material[i].f_fee = this.material[i].f_material_price * this.material[i].f_material_number
|
|
525
527
|
if (isEmpty(this.material[i].f_state)) {
|
|
526
528
|
this.material[i].f_state = '未收费'
|
|
527
529
|
}
|
|
@@ -531,6 +533,7 @@ getallfee(){
|
|
|
531
533
|
imgs: imgs,
|
|
532
534
|
f_process_id: this.selectdata.f_process_id
|
|
533
535
|
}
|
|
536
|
+
console.log("要保存了666",data)
|
|
534
537
|
HostApp.__this__ = this
|
|
535
538
|
HostApp.logicWithHint({
|
|
536
539
|
// logic别名,key必须为logic
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
<label>单价(元/{{ item.unit }})</label>
|
|
37
37
|
<input type="number" class="form-control y-form-item-input"
|
|
38
38
|
v-model="item.f_material_price"
|
|
39
|
-
|
|
39
|
+
|
|
40
40
|
>
|
|
41
41
|
</div>
|
|
42
42
|
<div class="y-form-item">
|
|
@@ -65,6 +65,7 @@ export default {
|
|
|
65
65
|
this.item.f_typenumber = res['value']['materialNumber'].name
|
|
66
66
|
this.item.unit = res['value']['materialNumber'].unit
|
|
67
67
|
this.item.f_material_price = res['value']['materialNumber'].price
|
|
68
|
+
this.item.f_typename = res['value']['typeName'].name
|
|
68
69
|
}
|
|
69
70
|
|
|
70
71
|
}
|
|
@@ -197,7 +197,7 @@ export default {
|
|
|
197
197
|
})
|
|
198
198
|
},
|
|
199
199
|
searchCondition (args) {
|
|
200
|
-
args.condition = args.condition + ` and sw.
|
|
200
|
+
args.condition = args.condition + ` and sw.f_filiale_id = '${this.$login.f.orgid}'`
|
|
201
201
|
this.model.search(args.condition, args.model)
|
|
202
202
|
},
|
|
203
203
|
// 查询
|