sale-client 3.6.322 → 3.6.323
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/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -2
- package/package.json +1 -1
- package/src/components/revenue/cardHandManage/cardDown.vue +5 -0
- package/src/filiale/qianneng/revenue/machineHandManage/machineHand.vue +2 -1
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/.npmignore +0 -12
- package/package-lock.json +0 -28915
- package/src/.npmignore +0 -1
- package/yarn.lock +0 -12035
|
Binary file
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#
|
|
2
|
-
gradle.version=
|
|
1
|
+
#Tue Jun 25 18:59:47 CST 2024
|
|
2
|
+
gradle.version=5.2.1
|
package/package.json
CHANGED
|
@@ -926,6 +926,11 @@ export default {
|
|
|
926
926
|
param.inputtor = this.downModel.downInputtor[0]
|
|
927
927
|
}
|
|
928
928
|
console.log('下发参数:', param)
|
|
929
|
+
console.log(param.inputtor,param.inputtor===undefined)
|
|
930
|
+
if(param.inputtor===undefined || param.inputtor===null){
|
|
931
|
+
this.$showAlert(`抄表员为空`, 'danger', 10000)
|
|
932
|
+
return
|
|
933
|
+
}
|
|
929
934
|
this.$resetpost('rs/logic/cardDownHand', {data: param}, {resolveMsg: null, rejectMsg: null}).then((res) => {
|
|
930
935
|
// 将缓存的未抄表ID数组置空
|
|
931
936
|
// this.unhandplan = []
|
|
@@ -1021,6 +1021,7 @@ export default {
|
|
|
1021
1021
|
endDate: this.model.params.endDate,
|
|
1022
1022
|
condition: ` f_userfiles_id = '${this.danhu.info.f_userfiles_id}' `,
|
|
1023
1023
|
f_operator: this.$login.f.name,
|
|
1024
|
+
f_input_person: this.$login.f.name,
|
|
1024
1025
|
f_operatorid: this.$login.f.id,
|
|
1025
1026
|
danhu: true,
|
|
1026
1027
|
userfilesid: this.danhu.info.f_userfiles_id
|
|
@@ -1657,7 +1658,7 @@ export default {
|
|
|
1657
1658
|
},
|
|
1658
1659
|
// 单条下发计划
|
|
1659
1660
|
downHand (row) {
|
|
1660
|
-
console.log('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~' + row.f_userfiles_id)
|
|
1661
|
+
console.log('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~' + row.f_userfiles_id,row)
|
|
1661
1662
|
this.down('single', `f_userfiles_id = '${row.f_userfiles_id}'`, row)
|
|
1662
1663
|
},
|
|
1663
1664
|
// 批量下发计划
|
|
Binary file
|