新状态未出现在订单列表中

发布于 2024-10-11 04:33:27 字数 226 浏览 1 评论 0原文

我为订单创建了一个新状态,并且设置正确,我的问题是它没有出现在订单列表中...它应该是空白的,

我应该编辑什么才能使其工作?

示例:

 $order->setState('new_status', 'new_status', 'Some comment', false);
 $order->save();

谢谢,

I created a new status for the orders and it is being set correctly, my problem is that is not appearing on the order list... it is blank where it should be

what should I edit for this to work?

example:

 $order->setState('new_status', 'new_status', 'Some comment', false);
 $order->save();

thanks,
Joe

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

山色无中 2024-10-18 04:33:27

我怀疑您需要在模块的 config.xml 文件中定义状态。

<config>
    <global>
        <sales>
            <order>
                <statuses>
                    <new_status translate="label"><label>Some status</label></new_status>
                </statuses>
            </order>
        </sales>
    </global>
</config>

这是获取所有其他状态代码的方式。

I suspect you need to define the status in your module's config.xml file.

<config>
    <global>
        <sales>
            <order>
                <statuses>
                    <new_status translate="label"><label>Some status</label></new_status>
                </statuses>
            </order>
        </sales>
    </global>
</config>

This is how all other status codes are acquired.

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