| | |
| | | return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.billdate); |
| | | } |
| | | |
| | | public String getIokindid$(){ |
| | | if (null == this.iokindid){ return null; } |
| | | switch (this.iokindid){ |
| | | case "TF_PSS": |
| | | return "采购销售"; |
| | | case "TF_IC": |
| | | return "库存调拨"; |
| | | case "TF_IJ": |
| | | return "库存调整"; |
| | | case "TF_ML": |
| | | return "生产领料"; |
| | | case "TF_MM0": |
| | | return "生产缴库"; |
| | | case "TF_TC": |
| | | return "托工退回"; |
| | | default: |
| | | return String.valueOf(this.status); |
| | | } |
| | | } |
| | | |
| | | public String getStatus$(){ |
| | | if (null == this.status){ return null; } |
| | | switch (this.status){ |
| | | case 0: |
| | | return "0(初始状态)"; |
| | | case 1: |
| | | return "1(已接收)"; |
| | | case 2: |
| | | return "2(异常)"; |
| | | default: |
| | | return String.valueOf(this.status); |
| | | } |
| | | } |
| | | |
| | | } |