先进先出 (FIFO) 库存

发布于 2024-12-18 21:34:26 字数 308 浏览 1 评论 0原文

假设我有以下两条记录;

 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

誰ツ都不明白 2024-12-25 21:34:26

您的 SQL 语句可能类似于这样,

select * from tablename where item_id = 1 order by tran_id asc

它应该为您提供记录,其中第一项位于顶部,依此类推。然后在您的 java 代码中您可以相应地调整数量。

Your SQL statement could look something like this

select * from tablename where item_id = 1 order by tran_id asc

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文