|
@@ -56,9 +56,9 @@
|
|
|
</template>
|
|
|
<script>
|
|
|
import urlConfig from "@/apis/url-config";
|
|
|
-import { getToken } from "@/utils/auth";
|
|
|
import resToken from "@/mixins/resToken";
|
|
|
import asyncRequest from "@/apis/service/stock/check/detail";
|
|
|
+import { isnumber } from "@/utils/validate";
|
|
|
export default {
|
|
|
name: "resultUplodModel",
|
|
|
props: ["showModel", "id"],
|
|
@@ -72,7 +72,7 @@ export default {
|
|
|
isfile: false,
|
|
|
head: [
|
|
|
"商品编码",
|
|
|
- "商品属性编码",
|
|
|
+ // "商品属性编码",
|
|
|
"商品名称",
|
|
|
"商品描述",
|
|
|
"品牌",
|
|
@@ -118,7 +118,6 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
methods: {
|
|
|
-
|
|
|
async initForm() {
|
|
|
this.loading = true;
|
|
|
this.isfile = false;
|
|
@@ -178,9 +177,39 @@ export default {
|
|
|
async submitForm() {
|
|
|
if (!this.loading) {
|
|
|
this.loading = true;
|
|
|
+ let isok = true,
|
|
|
+ isn = true,
|
|
|
+ list = [];
|
|
|
+ this.tableData.forEach((v) => {
|
|
|
+ if (v.value14 === "") {
|
|
|
+ isok = false;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ if (!isok) {
|
|
|
+ this.$message.warning("盘点库存不能为空!");
|
|
|
+ this.loading = false;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ this.tableData.forEach((v) => {
|
|
|
+ list.push({
|
|
|
+ value0: v.value0,
|
|
|
+ value1: v.value1,
|
|
|
+ // value2: v.value2,
|
|
|
+ value14: v.value14+"",
|
|
|
+ });
|
|
|
+ if (!isnumber(v.value14)) {
|
|
|
+ isn = false;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ if (!isn) {
|
|
|
+ this.$message.warning("盘点库存只能为正整数!");
|
|
|
+ this.loading = false;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
let model = {
|
|
|
id: this.id,
|
|
|
- data: this.tableData,
|
|
|
+ data: list,
|
|
|
};
|
|
|
const res = await asyncRequest.checkimport(model);
|
|
|
this.loading = false;
|