0

我想创建一个扩展 idempiere 产品模型的类,以从其他字段创建代码,但我不知道应该导入哪个类或应该覆盖什么方法。

org.compiere.model.MProduct:

    public MProduct (X_I_Product impP)
    {
        this (impP.getCtx(), 0, impP.get_TrxName());
        setClientOrg(impP);
        setUpdatedBy(impP.getUpdatedBy());
        //
        // Value field:
        setValue(impP.getValue());
        setName(impP.getName());
        setDescription(impP.getDescription());
        setDocumentNote(impP.getDocumentNote());
        setHelp(impP.getHelp());
        setUPC(impP.getUPC());
        setSKU(impP.getSKU());
        setC_UOM_ID(impP.getC_UOM_ID());
        setM_Product_Category_ID(impP.getM_Product_Category_ID());
        setProductType(impP.getProductType());
        setImageURL(impP.getImageURL());
        setDescriptionURL(impP.getDescriptionURL());
        setVolume(impP.getVolume());
        setWeight(impP.getWeight());
    }   //  MProduct
4

0 回答 0