|
|
@ -34,6 +34,7 @@
|
|
|
|
</u-col>
|
|
|
|
</u-col>
|
|
|
|
</u-row>
|
|
|
|
</u-row>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<u-toast ref="uToast" />
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
@ -122,6 +123,14 @@ export default class sapStockPo extends BasePage {
|
|
|
|
|
|
|
|
|
|
|
|
getList() {
|
|
|
|
getList() {
|
|
|
|
getSapStockList(this.queryParams).then((res) => {
|
|
|
|
getSapStockList(this.queryParams).then((res) => {
|
|
|
|
|
|
|
|
if (res.total === 0) {
|
|
|
|
|
|
|
|
uni.showModal({
|
|
|
|
|
|
|
|
title: '提示',
|
|
|
|
|
|
|
|
content: '未查询到该物料,或该物料库存为0',
|
|
|
|
|
|
|
|
confirmText: '确认',
|
|
|
|
|
|
|
|
showCancel: false,
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
this.sapStockList = res.rows;
|
|
|
|
this.sapStockList = res.rows;
|
|
|
|
this.total = res.total;
|
|
|
|
this.total = res.total;
|
|
|
|
});
|
|
|
|
});
|
|
|
|