sale-client 3.6.569 → 3.6.570
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
|
@@ -189,6 +189,7 @@
|
|
|
189
189
|
<th><nobr>领用人</nobr></th>
|
|
190
190
|
<th><nobr>领用时间</nobr></th>
|
|
191
191
|
<th><nobr>领用电话</nobr></th>
|
|
192
|
+
<th><nobr>出厂日期</nobr></th>
|
|
192
193
|
</tr>
|
|
193
194
|
</template>
|
|
194
195
|
<template partial='body' >
|
|
@@ -221,7 +222,8 @@
|
|
|
221
222
|
<td style="text-align: center" >{{row.f_receive}}</td>
|
|
222
223
|
<td style="text-align: center" >{{row.f_receive_unit}}</td>
|
|
223
224
|
<td style="text-align: center" >{{row.f_receive_date}}</td>
|
|
224
|
-
<td style="text-align: center" >{{row.
|
|
225
|
+
<td style="text-align: center" >{{row.f_receive_phone}}</td>
|
|
226
|
+
<td style="text-align: center" >{{row.f_product_date}}</td>
|
|
225
227
|
|
|
226
228
|
|
|
227
229
|
</template>
|
|
@@ -679,7 +679,7 @@
|
|
|
679
679
|
console.log('开始查询')
|
|
680
680
|
self.sumsmodel = self.$refs.paged.$refs.grid.model.sums
|
|
681
681
|
// 抄表员
|
|
682
|
-
if (!this.$login.f.f_role_name.includes("
|
|
682
|
+
if (!this.$login.f.f_role_name.includes("抄表主管")){
|
|
683
683
|
self.$refs.paged.$refs.cri.model.f_inputtor = self.$login.f.name
|
|
684
684
|
}
|
|
685
685
|
}
|
|
@@ -762,7 +762,7 @@
|
|
|
762
762
|
},
|
|
763
763
|
ready() {
|
|
764
764
|
console.log('登录信息---------------->', this.$login.f)
|
|
765
|
-
console.log('登录信息-------111--------->', this.$login.f.f_role_name.includes("
|
|
765
|
+
console.log('登录信息-------111--------->', this.$login.f.f_role_name.includes("抄表主管"))
|
|
766
766
|
this.getShowInputor()
|
|
767
767
|
this.getaddress()
|
|
768
768
|
readySomething(this).then(() => {
|
|
@@ -774,7 +774,7 @@
|
|
|
774
774
|
},
|
|
775
775
|
methods: {
|
|
776
776
|
getShowInputor(){
|
|
777
|
-
if (this.$login.f.f_role_name.includes("
|
|
777
|
+
if (this.$login.f.f_role_name.includes("抄表主管")){
|
|
778
778
|
this.showinputor = true
|
|
779
779
|
}
|
|
780
780
|
},
|
|
@@ -870,7 +870,7 @@
|
|
|
870
870
|
|
|
871
871
|
async getinputtores () {
|
|
872
872
|
// 获取抄表员
|
|
873
|
-
if (this.$login.f.f_role_name.includes("
|
|
873
|
+
if (this.$login.f.f_role_name.includes("抄表主管")){
|
|
874
874
|
let rs = []
|
|
875
875
|
if (this.$login.f.f_gasman.length > 0) {
|
|
876
876
|
for (let i = 0; i < this.$login.f.f_gasman.length; i++) {
|
|
@@ -1006,9 +1006,9 @@
|
|
|
1006
1006
|
async getRes(condition,obj) {
|
|
1007
1007
|
console.log("condition:----------",condition)
|
|
1008
1008
|
console.log("obj:----------",obj)
|
|
1009
|
-
if (!this.$login.f.f_role_name.includes("
|
|
1009
|
+
if (!this.$login.f.f_role_name.includes("抄表主管")){
|
|
1010
1010
|
this.orgCondtionStr = condition + ` and f_inputtor = '${this.$login.f.name}'`
|
|
1011
|
-
}else if (this.$login.f.f_role_name.includes("
|
|
1011
|
+
}else if (this.$login.f.f_role_name.includes("部门抄表主管")) {
|
|
1012
1012
|
this.orgCondtionStr = condition + ` and f_depid = '${this.$login.f.depids}'`
|
|
1013
1013
|
}else {
|
|
1014
1014
|
this.orgCondtionStr = condition
|
|
@@ -1149,7 +1149,7 @@
|
|
|
1149
1149
|
// 获取抄表员
|
|
1150
1150
|
console.log('获取抄表员', this.$login.f)
|
|
1151
1151
|
let rs = []
|
|
1152
|
-
if (this.$login.f.f_role_name.includes("
|
|
1152
|
+
if (this.$login.f.f_role_name.includes("抄表主管")){
|
|
1153
1153
|
if (this.$login.f.f_gasman.length > 0) {
|
|
1154
1154
|
for (let i = 0; i < this.$login.f.f_gasman.length; i++) {
|
|
1155
1155
|
let temp = {
|