Add styles, warnings template for receiving component

This commit is contained in:
Lance Edgar 2022-09-07 19:55:29 -05:00
parent 7436d414c0
commit c4ea9758d3

View file

@ -96,6 +96,8 @@
<p>{{ row.unexpected_alert }}</p> <p>{{ row.unexpected_alert }}</p>
</div> </div>
<slot name="warnings" :row="row"></slot>
<br /> <br />
<div v-if="shouldShowQuickReceive"> <div v-if="shouldShowQuickReceive">
@ -347,3 +349,11 @@ export default {
}, },
} }
</script> </script>
<style>
table.receiving-quantities td {
padding: 0px 10px 0px 0px;
}
.input.receiving-quantity-input {
width: 10rem;
}
</style>