| | |
| | | } |
| | | }) |
| | | } |
| | | |
| | | export function fetchMatnrPrintTemplateList(params = {}) { |
| | | return request.post({ |
| | | url: '/matnrPrintTemplate/list', |
| | | params |
| | | }) |
| | | } |
| | | |
| | | export function fetchGetMatnrPrintTemplateDetail(id) { |
| | | return request.get({ |
| | | url: `/matnrPrintTemplate/${id}` |
| | | }) |
| | | } |
| | | |
| | | export function fetchGetDefaultMatnrPrintTemplate() { |
| | | return request.get({ |
| | | url: '/matnrPrintTemplate/default' |
| | | }) |
| | | } |
| | | |
| | | export function fetchSaveMatnrPrintTemplate(params = {}) { |
| | | return request.post({ |
| | | url: '/matnrPrintTemplate/save', |
| | | params |
| | | }) |
| | | } |
| | | |
| | | export function fetchUpdateMatnrPrintTemplate(params = {}) { |
| | | return request.post({ |
| | | url: '/matnrPrintTemplate/update', |
| | | params |
| | | }) |
| | | } |
| | | |
| | | export function fetchRemoveMatnrPrintTemplate(ids) { |
| | | return request.post({ |
| | | url: `/matnrPrintTemplate/remove/${normalizeIds(ids)}` |
| | | }) |
| | | } |
| | | |
| | | export function fetchSetDefaultMatnrPrintTemplate(id) { |
| | | return request.post({ |
| | | url: `/matnrPrintTemplate/default/${id}` |
| | | }) |
| | | } |