使用 Woocommerce 订阅时如何更新交货日期?

How can I update the delivery date when using Woocommerce Subscription?

如何更新 Woocommerce 订阅中的交货日期?

在文档中我没有找到任何相关内容。我以为我会得到 Metabox 并通过纯 SQL 升级,但必须有更好的方法。

已解决!

 $g = wc_get_order_item_meta($item_id,'_tmcartepo_data');
            $g[1]['value'] = 'Segunda';//Dia de Entrega
            $g[2]['value'] = '28/08/2018';//Data de Entrega
            wc_update_order_item_meta($item_id,'_tmcartepo_data',$g);