未编制的数量{{ partNum.length }}
{{ shuliang }}
-
种类:
-
+
零件名称:
-
+
投产总数量:
-
+
材质:
-
+
+ 保存
+ 保存
-
+
-
+
-
+
-
+
-
+
@@ -88,9 +69,6 @@
- 保存
- 保存
-
diff --git a/src/views/ManufacturingCenter/WorkshopEquipmentManagement/index.vue b/src/views/ManufacturingCenter/WorkshopEquipmentManagement/index.vue
index d08953ef..f2855422 100644
--- a/src/views/ManufacturingCenter/WorkshopEquipmentManagement/index.vue
+++ b/src/views/ManufacturingCenter/WorkshopEquipmentManagement/index.vue
@@ -8,7 +8,7 @@
-
+
{{ scope.row.设备名称 }}
@@ -111,7 +111,7 @@
-
+
+
diff --git a/src/views/Outsourcing/InterBudgetaryBudgets/index.vue b/src/views/Outsourcing/InterBudgetaryBudgets/index.vue
index 1f04e907..a5ae2b45 100644
--- a/src/views/Outsourcing/InterBudgetaryBudgets/index.vue
+++ b/src/views/Outsourcing/InterBudgetaryBudgets/index.vue
@@ -3,26 +3,36 @@
-
+
未编制
已编制
- 项目名称:
-
-
-
+
+
+
+
+
+
+
+
机床名称:
-
+
+ :value="item.value">
+ {{ item.label }}
+ {{ item.value2 }}
+
+
+
+
+
+
+
+
分组:
-
+
@@ -124,7 +134,7 @@
-
+
@@ -204,7 +214,7 @@ export default {
}
},
created() {
- this.fetchData()
+ this.typeChange()
this.searchPartNum()
},
methods: {
@@ -231,11 +241,12 @@ export default {
this.toolNum = []
this.NumValue = ''
this.Num = []
- getToolNum(this.entryNameValue).then(response => {
+ getToolNum().then(response => {
for (let i = 0; i < response.data.length; i++) {
this.toolNum.push({
label: response.data[i].机床图号,
- value: response.data[i].机床流水号
+ value: response.data[i].机床流水号,
+ value2: response.data[i].项目名称
})
}
})
diff --git a/src/views/Outsourcing/OutsourcingPaymentPlanManagement/index.vue b/src/views/Outsourcing/OutsourcingPaymentPlanManagement/index.vue
index 40a0e54a..18707c81 100644
--- a/src/views/Outsourcing/OutsourcingPaymentPlanManagement/index.vue
+++ b/src/views/Outsourcing/OutsourcingPaymentPlanManagement/index.vue
@@ -575,12 +575,16 @@ export default {
this.zhongjianbianliang = row.外协加工任务单流水号
this.fukuanshijian = row.实际付款时间
getParts(row.外协加工任务单流水号, this.pageCurrent2, this.pageSize2).then(response => {
- for (let i = 0; i < response.data.rows.length; i++) {
- response.data.rows[i].开票时间 = response.data.rows[i].开票时间.substring(0, response.data.rows[i].开票时间.indexOf(' '))
- response.data.rows[i].接收时间 = response.data.rows[i].接收时间.substring(0, response.data.rows[i].接收时间.indexOf(' '))
+ if (response.data.rows.length === 0) {
+ this.loading2 = false
+ } else {
+ for (let i = 0; i < response.data.rows.length; i++) {
+ response.data.rows[i].开票时间 = response.data.rows[i].开票时间.substring(0, response.data.rows[i].开票时间.indexOf(' '))
+ response.data.rows[i].接收时间 = response.data.rows[i].接收时间.substring(0, response.data.rows[i].接收时间.indexOf(' '))
+ }
+ this.tableData2 = response.data.rows
+ this.total2 = response.data.total
}
- this.tableData2 = response.data.rows
- this.total2 = response.data.total
}).then(() => {
this.loading2 = false
})
diff --git a/src/views/Outsourcing/OutsourcingPaymentPlanManagement2/index.vue b/src/views/Outsourcing/OutsourcingPaymentPlanManagement2/index.vue
new file mode 100644
index 00000000..17b4d858
--- /dev/null
+++ b/src/views/Outsourcing/OutsourcingPaymentPlanManagement2/index.vue
@@ -0,0 +1,668 @@
+
+
+
+
+ 外协厂家:
+
+
+
+ 查询
+
+
+
+
+
+
+
+ {{ scope.row.外协厂家名称 }}
+
+
+
+
+ {{ scope.row.待付金额 }}
+
+
+
+
+ 到票
+ 付款
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ scope.row.付款金额 }}
+
+
+
+
+ {{ scope.row.备注 }}
+
+
+
+
+ {{ scope.row.付款日期 }}
+
+
+
+
+ 编辑
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+ {{ scope.row.发票号 }}
+
+
+
+
+ {{ scope.row.接收人 }}
+
+
+
+
+ {{ scope.row.开户行 }}
+
+
+
+
+ {{ scope.row.开票金额 }}
+
+
+
+
+ {{ scope.row.开票时间 }}
+
+
+
+
+ {{ scope.row.接收时间 }}
+
+
+
+
+ {{ scope.row.备注 }}
+
+
+
+
+ 编辑
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/Outsourcing/OutsourcingTaskExecution/index.vue b/src/views/Outsourcing/OutsourcingTaskExecution/index.vue
index 20f7c440..f48e1ff4 100644
--- a/src/views/Outsourcing/OutsourcingTaskExecution/index.vue
+++ b/src/views/Outsourcing/OutsourcingTaskExecution/index.vue
@@ -404,7 +404,7 @@
-
+
查询
@@ -1207,14 +1207,12 @@ export default {
},
// 成交
Deal() {
- this.documentStatus = 2
- this.sign = 1
this.$confirm('成交后单据不可修改, 确定成交吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
- editData1(this.Number, this.ManufactorNumber, this.freight, this.documentStatus, this.sign, this.Explain).then(response => {
+ editData1(this.Number, this.ManufactorNumber, this.freight, this.Explain).then(response => {
if (response.data[0].result === '1') {
this.$message.success('提交成功')
this.fetchData()
@@ -1265,7 +1263,7 @@ export default {
},
// 提交编辑
submitEdit() {
- editData(this.Number, this.ManufactorNumber1, this.form.运费, this.documentStatus, 1, this.Explain).then(response => {
+ editData(this.Number, this.ManufactorNumber1, this.form.运费, this.Explain).then(response => {
if (response.data[0].result === '1') {
this.$message.success('编辑成功')
this.dialogFormVisible = false
@@ -1436,7 +1434,8 @@ export default {
handleSelectionChange(val) {
this.processNum = val
},
- getSpareParts() { // 选入零件
+ // 选入零件
+ getSpareParts() {
if (this.Number !== null) {
this.result = 0
for (let i = 0; i < this.processNum.length; i++) {
diff --git a/src/views/Outsourcing/OutsourcingTaskQuery/index.vue b/src/views/Outsourcing/OutsourcingTaskQuery/index.vue
index b63cd08f..9575e0fe 100644
--- a/src/views/Outsourcing/OutsourcingTaskQuery/index.vue
+++ b/src/views/Outsourcing/OutsourcingTaskQuery/index.vue
@@ -315,7 +315,6 @@ export default {
for (let i = 0; i < this.gongxulsh.length; i++) {
handlechange(this.gongxulsh[i].工序流水号, '0000')
if (i === this.gongxulsh.length - 1) {
- console.log(1)
shouhuo(row.外协加工任务单流水号).then(response => {
if (response.data[0].result === '1') {
this.fetchData()
diff --git a/src/views/Outsourcing/PreorderAssociation/index.vue b/src/views/Outsourcing/PreorderAssociation/index.vue
index cdce2a23..db9112cd 100644
--- a/src/views/Outsourcing/PreorderAssociation/index.vue
+++ b/src/views/Outsourcing/PreorderAssociation/index.vue
@@ -2,22 +2,32 @@
- 项目名称:
-
-
-
+
+
+
+
+
+
+
+
机床名称:
-
+
+ :value="item.value">
+ {{ item.label }}
+ {{ item.value2 }}
+
+
+
+
+
+
+
+
分组:
-
+
未加工
- 已完成
+ 已完成
备料
停产
- 选择
+ 选择
@@ -166,7 +176,7 @@ export default {
}
},
created() {
- this.fetchData()
+ this.typeChange()
this.searchTable()
},
methods: {
@@ -187,11 +197,12 @@ export default {
this.toolNum = []
this.NumValue = ''
this.Num = []
- getToolNum(this.entryNameValue).then(response => {
+ getToolNum().then(response => {
for (let i = 0; i < response.data.length; i++) {
this.toolNum.push({
label: response.data[i].机床图号,
- value: response.data[i].机床流水号
+ value: response.data[i].机床流水号,
+ value2: response.data[i].项目名称
})
}
})
@@ -244,6 +255,7 @@ export default {
this.checkBox = []
this.tableData2 = []
searchTable2(row.工艺计划流水号).then(response => {
+ console.log(response.data)
this.num1 = row.工艺计划流水号
if (response.data.length === 0) {
this.loading0 = false
diff --git a/src/views/TechnologyCenter/CreatePackingList/index.vue b/src/views/TechnologyCenter/CreatePackingList/index.vue
index 5b683f91..8aa4088a 100644
--- a/src/views/TechnologyCenter/CreatePackingList/index.vue
+++ b/src/views/TechnologyCenter/CreatePackingList/index.vue
@@ -10,7 +10,7 @@
:value="item.value"/>
增加
- 导出
+ 导出
总装箱单
@@ -91,34 +91,28 @@
width="100px"/>
+ >{{ scope.row.类别 }}
+ >{{ scope.row.代号 }}
+ >{{ scope.row.名称 }}
+ >{{ scope.row.规格 }}
+ >{{ scope.row.数量 }}
+ >{{ scope.row.备注 }}
@@ -190,7 +184,7 @@
label="代号"
align="center"
min-width="100px">
- {{ scope.row.图号 }}
+ {{ scope.row.代号 }}
+
+
+
+
+
@@ -418,14 +417,174 @@
确定
+
+
+
+
+
+
+
+
+
+
+
+
+ 数 控 轧 辊 铣 扁 专机 |
+
+
+ 装 箱 单 |
+
+
+ | GJR1322-ZD |
+
+
+
+
+ |
+
+
+ 出厂编号: |
+
+
+ 中 华 人 民 共 和 国 |
+
+
+ 江 苏 高 精 机 电 装 备 有 限 公 司 |
+
+
+
+
+
+
+
+
+
+
+
+
+
+ | 装 箱 单 |
+ {{ receiptName }} |
+
+
+ 本装箱单所列的包装品开箱后应立即清点
|
+
+
+ | 箱号 |
+ |
+ 箱体尺寸
|
+ |
+
+
+ | 毛中 |
+ 净重
|
+
+
+
+ | 一、主机 |
+
+
+ 序号
|
+ 代号 |
+ 名称 |
+ 数量
|
+ 备注
|
+
+
+ | {{ list.序号 }} |
+ {{ list.代号 }} |
+ {{ list.机床名称 }} |
+ {{ list.数量 }} |
+ {{ list.备注 }} |
+
+
+
+
+ | 二、机床所属部件 |
+
+
+ | 序号 |
+ 代号 |
+ 名称
|
+ 规格 |
+ 数量 |
+ 备注 |
+
+
+ | {{ index + 1 }} |
+ {{ list.代号 }} |
+ {{ list.名称 }} |
+ {{ list.规格 }} |
+ {{ list.数量 }} |
+ {{ list.备注 }} |
+
+
+
+
+ | 三、随机供应备件 |
+
+
+ 序号
|
+ 名称 |
+ 代号
|
+ 数量
|
+ 备注
|
+
+
+ | {{ index + 1 }} |
+ {{ list.名称 }} |
+ {{ list.代号 }} |
+ {{ list.数量 }} |
+ {{ list.备注 }} |
+
+
+
+
+ | 四、随机技术文件 |
+
+
+ 序号
|
+ 名称
|
+ 代号 |
+ 数量 |
+ 备注 |
+
+
+ | {{ index + 1 }} |
+ {{ list.名称 }} |
+ {{ list.代号 }} |
+ {{ list.数量 }} |
+ {{ list.备注 }} |
+
+
+
+ 标记
|
+ 处数
|
+ 更改文件号
|
+ 签字
|
+ 日期
|
+ |
+
+
+ |
+ |
+ |
+ |
+ |
+ |
+
+
+