Commit 41afafb9 authored by Jerome Chauveau's avatar Jerome Chauveau
Browse files

Modification affichage nom original d'une ressource pour éviter les ambiguités...

Modification affichage nom original d'une ressource pour éviter les ambiguités + suppression méthode rpc hors sujet
parent 8b22c2e6
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -153,7 +153,7 @@
        </v-menu>
        <v-toolbar-title
          class="white--text ml-2 d-flex"
          :title="resource.title"
          :title="resource.title + (resource.title!=resource.original_name ? ' (' + resource.original_name +')' : '')"
        >
          <span class="text-truncate resource-title">{{
            resource.title
@@ -170,9 +170,9 @@
            :resource="resource"
          />

          <v-container v-if="resource.title!=resource.original_name">
          <!--          <v-container v-if="resource.title!=resource.original_name">
            <label class="text-h6 ml-1">Nom original</label><span class="ml-5">{{ resource.original_name }}</span>
          </v-container>
          </v-container>-->

          <jama-tag-editor
            :item="resource"
+0 −27
Original line number Diff line number Diff line
@@ -425,33 +425,6 @@ class JamaRpcClient extends RpcClient{
    }


    /**
     * Status whould be one of: todo, wip, done.
     *
     * Use such a dict for selection:
     * ```
     * {
     *     "include": {
     *         "resources_ids": [3493, 159]
     *         "collections_ids:" [20, 31]
     *     },
     *     "exclude": {
     *         "resources_ids": [12, 10, 15]
     *         "collections_ids:" [4, 254, 17]
     *     }
     * }
     * ```
     *
     * @param {BigInteger} from_collection_id
     * @param {Object} selection
     * @param {String} status
     * @returns {Boolean}
     */
    async bibnumSetResourcesWorkStatus(from_collection_id, selection, status) {
        return this._rpc("bibnum_set_resources_work_status", [from_collection_id, selection, status]);
    }


    /**
     * Change the value of a meta for a collection.
     *