我需要在Magento示例导出模板中添加其他字段,例如包括包裹,包裹价格等。我不知道该怎么做。有人可以引导我通过吗?提前致谢 命运
答案 0 :(得分:0)
示例导出文件来自预先生成的/静态的csv文件,例如,如果产品来自yellow
创建一个新模块,将示例文件从public class ScalingLayoutOutlineProvider extends ViewOutlineProvider {
@Override
public void getOutline(View view, Outline outline) {
outline.setRoundRect(0, 0, width, height, radius);
}
}
复制到public class ScalingLayout extends FrameLayout {
//...
viewOutline = new ScalingLayoutOutlineProvider(w, h, currentRadius);
setOutlineProvider(viewOutline);
//..
}
列中,添加新属性,覆盖const userid = data && data.userid;
控制器Magento_ImportExport::Files/Sample/catalog_product.csv
就是这样。