Browse Source

Merge remote-tracking branch 'origin/master'

master
常熟吴彦祖 1 month ago
parent
commit
138ec2cc83
  1. 2
      src/api/po/po.js
  2. 4
      src/views/modules/other-transaction/other-outbound.vue

2
src/api/po/po.js

@ -19,6 +19,8 @@ export const getUnqualifiedInspectionList = data => createAPI(`inspection/getUnq
// 扫描条码获取HandlingUnit信息
export const scanHandlingUnitLabel = data => createAPI(`handlingunit/getHandlingUnitDetail`,'post',data)
export const scanHandlingUnitLabelForYiKu = data => createAPI(`handlingunit/scanHandlingUnitLabelForYiKu`,'post',data)
export const scanHandlingUnitLabelForOther = data => createAPI(`handlingunit/scanHandlingUnitLabelForOther`,'post',data)
// 检验合格入库
export const confirmQualifiedInbound = data => createAPI(`inspection/confirmQualifiedInbound`,'post',data)

4
src/views/modules/other-transaction/other-outbound.vue

@ -123,7 +123,7 @@
</template>
<script>
import { scanHandlingUnitLabel, confirmOtherOutbound, getOtherOutboundHistory } from '@/api/po/po'
import { scanHandlingUnitLabelForOther, confirmOtherOutbound, getOtherOutboundHistory } from '@/api/po/po'
export default {
name: 'OtherOutbound',
@ -161,7 +161,7 @@ export default {
site: this.site,
};
scanHandlingUnitLabel(params).then(({ data }) => {
scanHandlingUnitLabelForOther(params).then(({ data }) => {
if (data && data.code === 0 && data.data) {
const huInfo = data.data;
this.processHandlingUnit(unitId, huInfo);

Loading…
Cancel
Save