check.js 1.02 KB
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
import DnfmodCheck from '~/components/business/dnfmod/model/check.js';
import JshmodCheck from "../../../../components/business/jshmod/model/check";

export default function () {
    return {
        ...new JshmodCheck(this).check,
        ...new DnfmodCheck(this).check,
        "lidgrp.rec.ownref": null,
        "lidgrp.cbs.nom1.cur": null,
        "lidgrp.cbs.nom1.amt": null,
        "addamtflg": null,
        "lidgrp.cbs.opn1.cur": null,
        "lidgrp.cbs.opn1.amt": null,
        "lidgrp.rec.revflg": null,
        "avbnam": null,
        "lidgrp.rec.avbby": null,
        "lidgrp.rec.redclsflg": null,
        "lidgrp.rec.opndat": null,
        "lidgrp.rec.expdat": null,
        "lidgrp.rec.expplc": null,
        "lidgrp.rec.shpdat": null,
        "lidgrp.rec.nam": null,
        "lidgrp.apl.pts.ref": null,
        "lidgrp.apl.pts.nam": null,
        "lidgrp.ben.pts.ref": null,
        "lidgrp.ben.pts.nam": null,
        "lidgrp.adv.pts.ref": null,
        "lidgrp.adv.pts.nam": null,
        "lidgrp.rec.lcrtyp": null,
    }
}