|
@@ -310,6 +310,7 @@ function submitForm() {
|
|
|
proxy.$modal
|
|
|
.confirm("存在填写确定数量为0的工序,确定要收回吗?")
|
|
|
.then(function () {
|
|
|
+ form.value.processes = processList.value
|
|
|
if (form.value.id != null) {
|
|
|
updateReceipt(form.value).then((response) => {
|
|
|
proxy.$modal.msgSuccess("修改成功");
|
|
@@ -405,7 +406,7 @@ function handleSetAuditStatus() {
|
|
|
|
|
|
function getP2NeedCheck() {
|
|
|
getP2NeedCheckProcess("Y").then(res => {
|
|
|
- processList.value = res.row
|
|
|
+ processList.value = res.row.map(v => v.prcode.trim())
|
|
|
})
|
|
|
}
|
|
|
/** 暴露给父组件的方法 */
|