OK to clarify, I wanted to see the stock quantity of the parent on the Stock Central page. Currently, stock central page does not show the stock quantity of the parent nor it’s variations when I have WC set to manage at parent level only. Interestingly I CAN see quantity on hold of each variation though when I turn on ATUM control for the variations. (There seems to be no way to turn on ATUM control for the parent itself which is what led me to believe ATUM does not support parent level control of variations)
I see a possible solution. Changing line 1134 of
/home/fcm4wp/public_html/wp-content/plugins/atum-stock-manager-for-woocommerce/classes/Components/AtumListTables/AtumListTable.php
...
protected function column__stock( $item, $editable = TRUE ) {
$stock = self::EMPTY_COL;
$classes_title = '';
$tooltip_warning = '';
$wc_notify_no_stock_amount = get_option( 'woocommerce_notify_no_stock_amount' );
if ( $this->allow_calcs) {
...
to
...
protected function column__stock( $item, $editable = TRUE ) {
$stock = self::EMPTY_COL;
$classes_title = '';
$tooltip_warning = '';
$wc_notify_no_stock_amount = get_option( 'woocommerce_notify_no_stock_amount' );
{
...
This change seems to allow all rows except for variations controlled by parent or products without WC controlled stock quantities to have a stock quantity field which is all that was missing for us.