先进先出 (FIFO) 库存
假设我有以下两条记录;
tran_id item_id qty_in qty_out price
1 1 15 0 1.50
2 1 15 0 1.60
现在,当我想要消耗 20 个 item_id 1 单位时,我想在 FIFO 上消耗 15 个额定值 1.50 和 5 个额定值 1.60。
有人可以告诉我应该如何进行吗?
Let's say I have the following two records;
tran_id item_id qty_in qty_out price
1 1 15 0 1.50
2 1 15 0 1.60
Now, when I want to consume 20 units of item_id 1, I want to consume 15 of rated 1.50 and 5 of rated 1.60 on a FIFO.
Can somebody give me an idea as to how I should proceed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的 SQL 语句可能类似于这样,
它应该为您提供记录,其中第一项位于顶部,依此类推。然后在您的 java 代码中您可以相应地调整数量。
Your SQL statement could look something like this
That should give you your records with the first items at the top and so on. Then in your java code you can adjust the quantities accordingly.